Assigning slices of equivalent types doesn't work
Why doesn't this work?
package main
type Word uint8
type Memory Word
func main() {
bytes := uint8{}
memory := Memory{}
bytes = memory
}
The compiler generates this error:
9:9: cannot use memory (type Memory) as type byte in assignment
As I understand it, uint8
and Memory
should be mutually assignable.
go
add a comment |
Why doesn't this work?
package main
type Word uint8
type Memory Word
func main() {
bytes := uint8{}
memory := Memory{}
bytes = memory
}
The compiler generates this error:
9:9: cannot use memory (type Memory) as type byte in assignment
As I understand it, uint8
and Memory
should be mutually assignable.
go
Took a second look after your comment to zerkms a few minutes ago. There is more going on here than what it seems. For some reason, even auint8
is not assignable to aWord
(and vice versa). play.golang.org/p/BrU8mz4ZdUh
– RayfenWindspear
Nov 20 '18 at 16:42
Possible duplicate of Assignability of function parameters in golang
– RayfenWindspear
Nov 20 '18 at 17:08
Discovered the subtlety :)
– RayfenWindspear
Nov 20 '18 at 17:09
This seems to go into quite a bit of detail. go101.org/article/…
– RayfenWindspear
Nov 20 '18 at 17:17
add a comment |
Why doesn't this work?
package main
type Word uint8
type Memory Word
func main() {
bytes := uint8{}
memory := Memory{}
bytes = memory
}
The compiler generates this error:
9:9: cannot use memory (type Memory) as type byte in assignment
As I understand it, uint8
and Memory
should be mutually assignable.
go
Why doesn't this work?
package main
type Word uint8
type Memory Word
func main() {
bytes := uint8{}
memory := Memory{}
bytes = memory
}
The compiler generates this error:
9:9: cannot use memory (type Memory) as type byte in assignment
As I understand it, uint8
and Memory
should be mutually assignable.
go
go
edited Nov 20 '18 at 16:20


RayfenWindspear
3,6431229
3,6431229
asked Nov 19 '18 at 23:33


Martín StrausMartín Straus
41436
41436
Took a second look after your comment to zerkms a few minutes ago. There is more going on here than what it seems. For some reason, even auint8
is not assignable to aWord
(and vice versa). play.golang.org/p/BrU8mz4ZdUh
– RayfenWindspear
Nov 20 '18 at 16:42
Possible duplicate of Assignability of function parameters in golang
– RayfenWindspear
Nov 20 '18 at 17:08
Discovered the subtlety :)
– RayfenWindspear
Nov 20 '18 at 17:09
This seems to go into quite a bit of detail. go101.org/article/…
– RayfenWindspear
Nov 20 '18 at 17:17
add a comment |
Took a second look after your comment to zerkms a few minutes ago. There is more going on here than what it seems. For some reason, even auint8
is not assignable to aWord
(and vice versa). play.golang.org/p/BrU8mz4ZdUh
– RayfenWindspear
Nov 20 '18 at 16:42
Possible duplicate of Assignability of function parameters in golang
– RayfenWindspear
Nov 20 '18 at 17:08
Discovered the subtlety :)
– RayfenWindspear
Nov 20 '18 at 17:09
This seems to go into quite a bit of detail. go101.org/article/…
– RayfenWindspear
Nov 20 '18 at 17:17
Took a second look after your comment to zerkms a few minutes ago. There is more going on here than what it seems. For some reason, even a
uint8
is not assignable to a Word
(and vice versa). play.golang.org/p/BrU8mz4ZdUh– RayfenWindspear
Nov 20 '18 at 16:42
Took a second look after your comment to zerkms a few minutes ago. There is more going on here than what it seems. For some reason, even a
uint8
is not assignable to a Word
(and vice versa). play.golang.org/p/BrU8mz4ZdUh– RayfenWindspear
Nov 20 '18 at 16:42
Possible duplicate of Assignability of function parameters in golang
– RayfenWindspear
Nov 20 '18 at 17:08
Possible duplicate of Assignability of function parameters in golang
– RayfenWindspear
Nov 20 '18 at 17:08
Discovered the subtlety :)
– RayfenWindspear
Nov 20 '18 at 17:09
Discovered the subtlety :)
– RayfenWindspear
Nov 20 '18 at 17:09
This seems to go into quite a bit of detail. go101.org/article/…
– RayfenWindspear
Nov 20 '18 at 17:17
This seems to go into quite a bit of detail. go101.org/article/…
– RayfenWindspear
Nov 20 '18 at 17:17
add a comment |
1 Answer
1
active
oldest
votes
Here are the assignability rules
In this particular case none of those is held, so the types are not assignable.
Given you mentioned this answer is not detailed enough - let's run through every assignability rule: (for ease let's use A
as a substitute for uint8
and B
as a substitute for Word
)
- x's type is identical to T. --- Nope,
A
is not identical toB
- x's type V and T have identical underlying types and at least one of V or T is not a defined type. --- Nope, both are defined types
- T is an interface type and x implements T. --- None of them is an interface
- x is a bidirectional channel value, T is a channel type, x's type V and T have identical element types, and at least one of V or T is not a defined type. --- None of them is a channel
- x is the predeclared identifier nil and T is a pointer, function, slice, map, channel, or interface type. --- None of them holds
nil
value - x is an untyped constant representable by a value of type T. --- Nope, no constants involved
So, as you can see - there is no way A
is assignable to B
.
If you declare Memory as type Memory uint8
it would work (as @RayfenWindspear mentioned in the comments), I'm sure though the question roots is more "why" not "how to fix".
1
Explained in the spec, but it's useful to note for this specific instance, cutting outWord
and just usinguint8
makes them assignable.
– RayfenWindspear
Nov 19 '18 at 23:42
@RayfenWindspear indeed, added it, thanks
– zerkms
Nov 19 '18 at 23:46
My comment (which could have been better) was to illustrate that this is a case ofa = b
andb = c
but with Go assignability of types, that doesn't meana = c
.
– RayfenWindspear
Nov 19 '18 at 23:51
@RayfenWindspear it's probably even a bit more complicated because of covariance (lack of it)
– zerkms
Nov 20 '18 at 0:05
I read the assignability rules before posting, but I can't figure out why in that specific caseuint8
is not equal toWord
. Plus, I specifically asked "Why", not "how to fix". Thus, your answer isn't enought.
– Martín Straus
Nov 20 '18 at 16:14
|
show 1 more comment
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384167%2fassigning-slices-of-equivalent-types-doesnt-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Here are the assignability rules
In this particular case none of those is held, so the types are not assignable.
Given you mentioned this answer is not detailed enough - let's run through every assignability rule: (for ease let's use A
as a substitute for uint8
and B
as a substitute for Word
)
- x's type is identical to T. --- Nope,
A
is not identical toB
- x's type V and T have identical underlying types and at least one of V or T is not a defined type. --- Nope, both are defined types
- T is an interface type and x implements T. --- None of them is an interface
- x is a bidirectional channel value, T is a channel type, x's type V and T have identical element types, and at least one of V or T is not a defined type. --- None of them is a channel
- x is the predeclared identifier nil and T is a pointer, function, slice, map, channel, or interface type. --- None of them holds
nil
value - x is an untyped constant representable by a value of type T. --- Nope, no constants involved
So, as you can see - there is no way A
is assignable to B
.
If you declare Memory as type Memory uint8
it would work (as @RayfenWindspear mentioned in the comments), I'm sure though the question roots is more "why" not "how to fix".
1
Explained in the spec, but it's useful to note for this specific instance, cutting outWord
and just usinguint8
makes them assignable.
– RayfenWindspear
Nov 19 '18 at 23:42
@RayfenWindspear indeed, added it, thanks
– zerkms
Nov 19 '18 at 23:46
My comment (which could have been better) was to illustrate that this is a case ofa = b
andb = c
but with Go assignability of types, that doesn't meana = c
.
– RayfenWindspear
Nov 19 '18 at 23:51
@RayfenWindspear it's probably even a bit more complicated because of covariance (lack of it)
– zerkms
Nov 20 '18 at 0:05
I read the assignability rules before posting, but I can't figure out why in that specific caseuint8
is not equal toWord
. Plus, I specifically asked "Why", not "how to fix". Thus, your answer isn't enought.
– Martín Straus
Nov 20 '18 at 16:14
|
show 1 more comment
Here are the assignability rules
In this particular case none of those is held, so the types are not assignable.
Given you mentioned this answer is not detailed enough - let's run through every assignability rule: (for ease let's use A
as a substitute for uint8
and B
as a substitute for Word
)
- x's type is identical to T. --- Nope,
A
is not identical toB
- x's type V and T have identical underlying types and at least one of V or T is not a defined type. --- Nope, both are defined types
- T is an interface type and x implements T. --- None of them is an interface
- x is a bidirectional channel value, T is a channel type, x's type V and T have identical element types, and at least one of V or T is not a defined type. --- None of them is a channel
- x is the predeclared identifier nil and T is a pointer, function, slice, map, channel, or interface type. --- None of them holds
nil
value - x is an untyped constant representable by a value of type T. --- Nope, no constants involved
So, as you can see - there is no way A
is assignable to B
.
If you declare Memory as type Memory uint8
it would work (as @RayfenWindspear mentioned in the comments), I'm sure though the question roots is more "why" not "how to fix".
1
Explained in the spec, but it's useful to note for this specific instance, cutting outWord
and just usinguint8
makes them assignable.
– RayfenWindspear
Nov 19 '18 at 23:42
@RayfenWindspear indeed, added it, thanks
– zerkms
Nov 19 '18 at 23:46
My comment (which could have been better) was to illustrate that this is a case ofa = b
andb = c
but with Go assignability of types, that doesn't meana = c
.
– RayfenWindspear
Nov 19 '18 at 23:51
@RayfenWindspear it's probably even a bit more complicated because of covariance (lack of it)
– zerkms
Nov 20 '18 at 0:05
I read the assignability rules before posting, but I can't figure out why in that specific caseuint8
is not equal toWord
. Plus, I specifically asked "Why", not "how to fix". Thus, your answer isn't enought.
– Martín Straus
Nov 20 '18 at 16:14
|
show 1 more comment
Here are the assignability rules
In this particular case none of those is held, so the types are not assignable.
Given you mentioned this answer is not detailed enough - let's run through every assignability rule: (for ease let's use A
as a substitute for uint8
and B
as a substitute for Word
)
- x's type is identical to T. --- Nope,
A
is not identical toB
- x's type V and T have identical underlying types and at least one of V or T is not a defined type. --- Nope, both are defined types
- T is an interface type and x implements T. --- None of them is an interface
- x is a bidirectional channel value, T is a channel type, x's type V and T have identical element types, and at least one of V or T is not a defined type. --- None of them is a channel
- x is the predeclared identifier nil and T is a pointer, function, slice, map, channel, or interface type. --- None of them holds
nil
value - x is an untyped constant representable by a value of type T. --- Nope, no constants involved
So, as you can see - there is no way A
is assignable to B
.
If you declare Memory as type Memory uint8
it would work (as @RayfenWindspear mentioned in the comments), I'm sure though the question roots is more "why" not "how to fix".
Here are the assignability rules
In this particular case none of those is held, so the types are not assignable.
Given you mentioned this answer is not detailed enough - let's run through every assignability rule: (for ease let's use A
as a substitute for uint8
and B
as a substitute for Word
)
- x's type is identical to T. --- Nope,
A
is not identical toB
- x's type V and T have identical underlying types and at least one of V or T is not a defined type. --- Nope, both are defined types
- T is an interface type and x implements T. --- None of them is an interface
- x is a bidirectional channel value, T is a channel type, x's type V and T have identical element types, and at least one of V or T is not a defined type. --- None of them is a channel
- x is the predeclared identifier nil and T is a pointer, function, slice, map, channel, or interface type. --- None of them holds
nil
value - x is an untyped constant representable by a value of type T. --- Nope, no constants involved
So, as you can see - there is no way A
is assignable to B
.
If you declare Memory as type Memory uint8
it would work (as @RayfenWindspear mentioned in the comments), I'm sure though the question roots is more "why" not "how to fix".
edited Nov 20 '18 at 19:48
answered Nov 19 '18 at 23:40
zerkmszerkms
187k48339430
187k48339430
1
Explained in the spec, but it's useful to note for this specific instance, cutting outWord
and just usinguint8
makes them assignable.
– RayfenWindspear
Nov 19 '18 at 23:42
@RayfenWindspear indeed, added it, thanks
– zerkms
Nov 19 '18 at 23:46
My comment (which could have been better) was to illustrate that this is a case ofa = b
andb = c
but with Go assignability of types, that doesn't meana = c
.
– RayfenWindspear
Nov 19 '18 at 23:51
@RayfenWindspear it's probably even a bit more complicated because of covariance (lack of it)
– zerkms
Nov 20 '18 at 0:05
I read the assignability rules before posting, but I can't figure out why in that specific caseuint8
is not equal toWord
. Plus, I specifically asked "Why", not "how to fix". Thus, your answer isn't enought.
– Martín Straus
Nov 20 '18 at 16:14
|
show 1 more comment
1
Explained in the spec, but it's useful to note for this specific instance, cutting outWord
and just usinguint8
makes them assignable.
– RayfenWindspear
Nov 19 '18 at 23:42
@RayfenWindspear indeed, added it, thanks
– zerkms
Nov 19 '18 at 23:46
My comment (which could have been better) was to illustrate that this is a case ofa = b
andb = c
but with Go assignability of types, that doesn't meana = c
.
– RayfenWindspear
Nov 19 '18 at 23:51
@RayfenWindspear it's probably even a bit more complicated because of covariance (lack of it)
– zerkms
Nov 20 '18 at 0:05
I read the assignability rules before posting, but I can't figure out why in that specific caseuint8
is not equal toWord
. Plus, I specifically asked "Why", not "how to fix". Thus, your answer isn't enought.
– Martín Straus
Nov 20 '18 at 16:14
1
1
Explained in the spec, but it's useful to note for this specific instance, cutting out
Word
and just using uint8
makes them assignable.– RayfenWindspear
Nov 19 '18 at 23:42
Explained in the spec, but it's useful to note for this specific instance, cutting out
Word
and just using uint8
makes them assignable.– RayfenWindspear
Nov 19 '18 at 23:42
@RayfenWindspear indeed, added it, thanks
– zerkms
Nov 19 '18 at 23:46
@RayfenWindspear indeed, added it, thanks
– zerkms
Nov 19 '18 at 23:46
My comment (which could have been better) was to illustrate that this is a case of
a = b
and b = c
but with Go assignability of types, that doesn't mean a = c
.– RayfenWindspear
Nov 19 '18 at 23:51
My comment (which could have been better) was to illustrate that this is a case of
a = b
and b = c
but with Go assignability of types, that doesn't mean a = c
.– RayfenWindspear
Nov 19 '18 at 23:51
@RayfenWindspear it's probably even a bit more complicated because of covariance (lack of it)
– zerkms
Nov 20 '18 at 0:05
@RayfenWindspear it's probably even a bit more complicated because of covariance (lack of it)
– zerkms
Nov 20 '18 at 0:05
I read the assignability rules before posting, but I can't figure out why in that specific case
uint8
is not equal to Word
. Plus, I specifically asked "Why", not "how to fix". Thus, your answer isn't enought.– Martín Straus
Nov 20 '18 at 16:14
I read the assignability rules before posting, but I can't figure out why in that specific case
uint8
is not equal to Word
. Plus, I specifically asked "Why", not "how to fix". Thus, your answer isn't enought.– Martín Straus
Nov 20 '18 at 16:14
|
show 1 more comment
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384167%2fassigning-slices-of-equivalent-types-doesnt-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Took a second look after your comment to zerkms a few minutes ago. There is more going on here than what it seems. For some reason, even a
uint8
is not assignable to aWord
(and vice versa). play.golang.org/p/BrU8mz4ZdUh– RayfenWindspear
Nov 20 '18 at 16:42
Possible duplicate of Assignability of function parameters in golang
– RayfenWindspear
Nov 20 '18 at 17:08
Discovered the subtlety :)
– RayfenWindspear
Nov 20 '18 at 17:09
This seems to go into quite a bit of detail. go101.org/article/…
– RayfenWindspear
Nov 20 '18 at 17:17