In many cases it's possible to compile Feldspar tuples into a set of variables instead of creating a struct. For example: ``` .haskell f a b = c+d where (c,d) = (a==b) ? ((a,2), (b,3)) ``` There's no need to create a struct in this case. See [this proposal](https://gist.github.com/emilaxelsson/5170284#file-gistfile1-md). See also the [issue for feldspar-language](../../feldspar-language/issues/61).
In many cases it's possible to compile Feldspar tuples into a set of variables instead of creating a struct. For example:
There's no need to create a struct in this case.
See this proposal.
See also the issue for feldspar-language.