On Thursday, 29 October 2015 at 19:42:10 UTC, anonymous wrote:
`tup` is an ordinary (run time, dynamic) string to the type
system. You can't mixin those. You can only mixin static values
(enum, static immutable, CTFE results).
The code you're generating doesn't depend on `base` and
`other`. A
On 29.10.2015 19:59, Edwin van Leeuwen wrote:
On Saturday, 24 October 2015 at 11:04:14 UTC, Edwin van Leeuwen wrote:
I am trying to write a function to merge two named structs, but am
completely stuck on how to do that and was wondering if anyone good
provide any help. I know I can access the di
On Saturday, 24 October 2015 at 11:04:14 UTC, Edwin van Leeuwen
wrote:
I am trying to write a function to merge two named structs, but
am completely stuck on how to do that and was wondering if
anyone good provide any help. I know I can access the different
names with tup.fieldNames, but basica
I am trying to write a function to merge two named structs, but
am completely stuck on how to do that and was wondering if anyone
good provide any help. I know I can access the different names
with tup.fieldNames, but basically can't work out how to use that
to build the new return type. Below