Mild confusion around type family

Below is a very simple almost canonical natural number model. I'm slightly confused by how type families work Wikipedia says.... "Type families are a feature of some type systemshttps://en.wikipedia.org/wiki/Type_system that allow PARTIAL functions between types to be defined by pattern matchinghttps://en.wikipedia.org/wiki/Pattern_matching" So...
{-# LANGUAGE DataKinds #-} {-# LANGUAGE ExplicitForAll #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE PolyKinds #-} {-# LANGUAGE StandaloneDeriving #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} {-# LANGUAGE UndecidableInstances #-} {-# LANGUAGE ScopedTypeVariables #-}
lets do something simple
data Z data S n
type family Sub a b
-- a - 0 == a type instance Sub a Z = a -- (a + 1) - (b + 1) == a - b type instance Sub (S a) (S b) = Sub a b
oneMinusOne :: Z oneMinusOne = undefined :: Sub (S Z) (S Z)
I want this to be a type error!...but the above type family appears to not be partial...this IS defined...."Sub Z (S Z)" is a type! (I thought it wasn't)
oneMinusTwo :: Sub Z (S Z) oneMinusTwo = undefined :: Sub (S Z) (S (S Z))
CONFIDENTIALITY NOTICE This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited. While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data. Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us. MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT.

On 18/06/15 17:19, Nicholls, Mark wrote:
data Z data S n
type family Sub a b type instance Sub a Z = a type instance Sub (S a) (S b) = Sub a b
I want this to be a type error!...but the above type family appears to not be partial…this IS defined….”Sub Z (S Z)” is a type! (I thought it wasn’t)
oneMinusTwo :: Sub Z (S Z) oneMinusTwo = undefined :: Sub (S Z) (S (S Z))
This is a slightly subtle point about type families. The type family application `Sub Z (S Z)` does not reduce, but neither is it an error. In this case, because Sub is an open type family, there is nothing to stop someone subsequently defining something like type instance Sub Z (S b) = Z in another module. Type families are functional relations, not functions in the FP sense. See also the discussion here, about the corresponding situation for a closed type family: https://ghc.haskell.org/trac/ghc/ticket/9636 Hope this helps, Adam -- Adam Gundry, Haskell Consultant Well-Typed LLP, http://www.well-typed.com/

Ah ok...my mistake... Lets do closed (below)....same problem. Its not partial.....so how do we make it a type error?...."1 - 2" is not defined on the natural numbers (I'll have a go with datakinds....)
{-# LANGUAGE DataKinds #-} {-# LANGUAGE ExplicitForAll #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE PolyKinds #-} {-# LANGUAGE StandaloneDeriving #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} {-# LANGUAGE UndecidableInstances #-} {-# LANGUAGE ScopedTypeVariables #-}
lets do something simple
data Z data S n
type family Sub a b where -- a - 0 == a Sub a Z = a -- (a + 1) - (b + 1) == a - b Sub (S a) (S b) = Sub a b
oneMinusOne :: Z oneMinusOne = undefined :: Sub (S Z) (S Z)
I want this to be a type error!...
oneMinusTwo :: Sub Z (S Z) oneMinusTwo = undefined :: Sub (S Z) (S (S Z))
-----Original Message----- From: Haskell-Cafe [mailto:haskell-cafe-bounces@haskell.org] On Behalf Of Adam Gundry Sent: 19 June 2015 2:20 PM To: haskell-cafe@haskell.org Subject: Re: [Haskell-cafe] Mild confusion around type family
On 18/06/15 17:19, Nicholls, Mark wrote:
data Z data S n
type family Sub a b type instance Sub a Z = a type instance Sub (S a) (S b) = Sub a b
I want this to be a type error!...but the above type family appears to not be partial...this IS defined...."Sub Z (S Z)" is a type! (I thought it wasn't)
oneMinusTwo :: Sub Z (S Z) oneMinusTwo = undefined :: Sub (S Z) (S (S Z))
This is a slightly subtle point about type families. The type family application `Sub Z (S Z)` does not reduce, but neither is it an error. In this case, because Sub is an open type family, there is nothing to stop someone subsequently defining something like
type instance Sub Z (S b) = Z
in another module.
Type families are functional relations, not functions in the FP sense.
See also the discussion here, about the corresponding situation for a closed type family: https://ghc.haskell.org/trac/ghc/ticket/9636
Hope this helps,
Adam
-- Adam Gundry, Haskell Consultant Well-Typed LLP, http://www.well-typed.com/ _______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe CONFIDENTIALITY NOTICE
This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited. While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data. Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us. MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT.

On Jun 19, 2015, at 10:14 AM, "Nicholls, Mark"
type family Sub a b where -- a - 0 == a Sub a Z = a -- (a + 1) - (b + 1) == a - b Sub (S a) (S b) = Sub a b
With a closed family, you could always do something like this:
type family Error (msg :: Symbol) -- no instances! type family Sub a b where -- real work Sub a b = Error "Sub is undefined here"
Would that help? It still doesn't immediately error (there's no way to do that currently), but it's perhaps more telling to have an error string. Richard

With a closed family, you could always do something like this:
type family Error (msg :: Symbol) -- no instances! type family Sub a b where -- real work Sub a b = Error "Sub is undefined here"
Would that help? It still doesn't immediately error (there's no way to do
On Jun 19, 2015 2:29 PM, "Richard Eisenberg"

Let me have a go with both of these
Excuse the spelling, sent from a phone with itty bitty keys, it like trying to sow a button on a shirt with a sausage.
On 20 Jun 2015, at 16:35, adam vogt
With a closed family, you could always do something like this:
type family Error (msg :: Symbol) -- no instances! type family Sub a b where -- real work Sub a b = Error "Sub is undefined here"
Would that help? It still doesn't immediately error (there's no way to do that currently), but it's perhaps more telling to have an error string.
Ghc does error out right away if you give it an infinite loop: type family Fail (x::k) (a :: *) where Fail x a = Fail x (Fail "don't raise the context stack please" a) -- defining f leads to compile failure, and the message includes the "msg" f :: Fail "msg" () f = undefined But it would be nice to have a less hacky solution, especially as this one gives error messages that suggest giving the type checker more resources. Regards, Adam CONFIDENTIALITY NOTICE This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited. While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data. Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us. MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT.

ugly...but effective.
thanks
________________________________
From: adam vogt [vogt.adam@gmail.com]
Sent: 20 June 2015 16:34
To: Richard Eisenberg
Cc: haskell-cafe; Nicholls, Mark
Subject: Re: [Haskell-cafe] Mild confusion around type family
On Jun 19, 2015 2:29 PM, "Richard Eisenberg"
With a closed family, you could always do something like this:
type family Error (msg :: Symbol) -- no instances! type family Sub a b where -- real work Sub a b = Error "Sub is undefined here"
Would that help? It still doesn't immediately error (there's no way to do that currently), but it's perhaps more telling to have an error string.
Ghc does error out right away if you give it an infinite loop: type family Fail (x::k) (a :: *) where Fail x a = Fail x (Fail "don't raise the context stack please" a) -- defining f leads to compile failure, and the message includes the "msg" f :: Fail "msg" () f = undefined But it would be nice to have a less hacky solution, especially as this one gives error messages that suggest giving the type checker more resources. Regards, Adam CONFIDENTIALITY NOTICE This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited. While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data. Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us. MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT.

So this works, what i find surprising is that type families do this at all...in my head "type" means some sort of synonym, so to allow unmapped synonyms and not flag them as an error seems very odd.
With datakind its doubly troubling as the unmatched family expression is of the same kind as the intended types in the domain of the "function"...so its unmatched and ive extended what seemed to be a closed expression defining some types of kind N.
Excuse the spelling, sent from a phone with itty bitty keys, it like trying to sow a button on a shirt with a sausage.
On 21 Jun 2015, at 13:07, Nicholls, Mark
With a closed family, you could always do something like this:
type family Error (msg :: Symbol) -- no instances! type family Sub a b where -- real work Sub a b = Error "Sub is undefined here"
Would that help? It still doesn't immediately error (there's no way to do that currently), but it's perhaps more telling to have an error string.
Ghc does error out right away if you give it an infinite loop: type family Fail (x::k) (a :: *) where Fail x a = Fail x (Fail "don't raise the context stack please" a) -- defining f leads to compile failure, and the message includes the "msg" f :: Fail "msg" () f = undefined But it would be nice to have a less hacky solution, especially as this one gives error messages that suggest giving the type checker more resources. Regards, Adam CONFIDENTIALITY NOTICE This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited. While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data. Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us. MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT. _______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.orgmailto:Haskell-Cafe@haskell.org http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe CONFIDENTIALITY NOTICE This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited. While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data. Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us. MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT.

"type" does exactly mean a synonym. "type family" means something else. Exactly what that "something else" is is actually puzzling me too these days. I think some Hard Thought here is called for, to be honest. A close approximation is that type families do introduce new types, with equality dictated by a (confluent) rewrite system. The troublesome aspect of declaring a new type at a closed kind is mitigated by the fact that we can never pattern match on a type family. (That is, we can't use a type family on the left of the = in a type family instance.) So we can't ever observe the new types. But it is still a bit odd.
As for the trick of getting early errors through infinite recursion: be careful. GHC makes no guarantees at all that an infinite loop in a type will cause an error. For example, if you have
type Const a b = a
and the infinite loop is the second parameter to Const, GHC will chug on happily. Perhaps this is intended, but perhaps not. Note that there is no type-level `Seq` that you might need to "force" a type to expose this sort of error.
Richard
On Jun 22, 2015, at 3:52 AM, "Nicholls, Mark"
So this works, what i find surprising is that type families do this at all...in my head "type" means some sort of synonym, so to allow unmapped synonyms and not flag them as an error seems very odd.
With datakind its doubly troubling as the unmatched family expression is of the same kind as the intended types in the domain of the "function"...so its unmatched and ive extended what seemed to be a closed expression defining some types of kind N.
Excuse the spelling, sent from a phone with itty bitty keys, it like trying to sow a button on a shirt with a sausage.
On 21 Jun 2015, at 13:07, Nicholls, Mark
wrote: ugly...but effective.
thanks
From: adam vogt [vogt.adam@gmail.com] Sent: 20 June 2015 16:34 To: Richard Eisenberg Cc: haskell-cafe; Nicholls, Mark Subject: Re: [Haskell-cafe] Mild confusion around type family
On Jun 19, 2015 2:29 PM, "Richard Eisenberg"
wrote: With a closed family, you could always do something like this:
type family Error (msg :: Symbol) -- no instances! type family Sub a b where -- real work Sub a b = Error "Sub is undefined here"
Would that help? It still doesn't immediately error (there's no way to do that currently), but it's perhaps more telling to have an error string. Ghc does error out right away if you give it an infinite loop: type family Fail (x::k) (a :: *) where Fail x a = Fail x (Fail "don't raise the context stack please" a) -- defining f leads to compile failure, and the message includes the "msg" f :: Fail "msg" () f = undefined But it would be nice to have a less hacky solution, especially as this one gives error messages that suggest giving the type checker more resources. Regards, Adam
CONFIDENTIALITY NOTICE
This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited.
While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data.
Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us.
MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT. _______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe
CONFIDENTIALITY NOTICE
This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited.
While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data.
Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us.
MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT.

I mostly understand (a confluent rewrite system doesn't register).
I did something it mathematically couldn't do.
I did
0 - n = (0 - (0 - (0 - n)))
On N...that can't be done...
It all feels a bit odd....introducing new types through data families seems reasonable, introducing them through type families...not.....but that's to my untrained eye.
From: Richard Eisenberg [mailto:eir@cis.upenn.edu]
Sent: 22 June 2015 5:20 PM
To: Nicholls, Mark
Cc: adam vogt; haskell-cafe
Subject: Re: [Haskell-cafe] Mild confusion around type family
"type" does exactly mean a synonym. "type family" means something else. Exactly what that "something else" is is actually puzzling me too these days. I think some Hard Thought here is called for, to be honest. A close approximation is that type families do introduce new types, with equality dictated by a (confluent) rewrite system. The troublesome aspect of declaring a new type at a closed kind is mitigated by the fact that we can never pattern match on a type family. (That is, we can't use a type family on the left of the = in a type family instance.) So we can't ever observe the new types. But it is still a bit odd.
As for the trick of getting early errors through infinite recursion: be careful. GHC makes no guarantees at all that an infinite loop in a type will cause an error. For example, if you have
type Const a b = a
and the infinite loop is the second parameter to Const, GHC will chug on happily. Perhaps this is intended, but perhaps not. Note that there is no type-level `Seq` that you might need to "force" a type to expose this sort of error.
Richard
On Jun 22, 2015, at 3:52 AM, "Nicholls, Mark"
With a closed family, you could always do something like this:
type family Error (msg :: Symbol) -- no instances! type family Sub a b where -- real work Sub a b = Error "Sub is undefined here"
Would that help? It still doesn't immediately error (there's no way to do that currently), but it's perhaps more telling to have an error string.
Ghc does error out right away if you give it an infinite loop: type family Fail (x::k) (a :: *) where Fail x a = Fail x (Fail "don't raise the context stack please" a) -- defining f leads to compile failure, and the message includes the "msg" f :: Fail "msg" () f = undefined But it would be nice to have a less hacky solution, especially as this one gives error messages that suggest giving the type checker more resources. Regards, Adam CONFIDENTIALITY NOTICE This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited. While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data. Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us. MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT. _______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.orgmailto:Haskell-Cafe@haskell.org http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe CONFIDENTIALITY NOTICE This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited. While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data. Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us. MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT. CONFIDENTIALITY NOTICE This e-mail (and any attached files) is confidential and protected by copyright (and other intellectual property rights). If you are not the intended recipient please e-mail the sender and then delete the email and any attached files immediately. Any further use or dissemination is prohibited. While MTV Networks Europe has taken steps to ensure that this email and any attachments are virus free, it is your responsibility to ensure that this message and any attachments are virus free and do not affect your systems / data. Communicating by email is not 100% secure and carries risks such as delay, data corruption, non-delivery, wrongful interception and unauthorised amendment. If you communicate with us by e-mail, you acknowledge and assume these risks, and you agree to take appropriate measures to minimise these risks when e-mailing us. MTV Networks International, MTV Networks UK & Ireland, Greenhouse, Nickelodeon Viacom Consumer Products, VBSi, Viacom Brand Solutions International, Be Viacom, Viacom International Media Networks and VIMN and Comedy Central are all trading names of MTV Networks Europe. MTV Networks Europe is a partnership between MTV Networks Europe Inc. and Viacom Networks Europe Inc. Address for service in Great Britain is 17-29 Hawley Crescent, London, NW1 8TT.
participants (4)
-
Adam Gundry
-
adam vogt
-
Nicholls, Mark
-
Richard Eisenberg