-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: compose
and assoc
to build a structure
#101
Comments
|
If this turns out not be a duplicate when #90 is resolved, let's reopen. |
So I fixed #90; guess what, your test isn't passing yet. So reopening until your test passes, as promised. :) |
Well, now we know. This wasn't an It stems from interaction between composition and functions with generics. Threads #92 and #86 appeared to be about the same problem. I currently intend to track this issue in #78, about currying rather than composition but otherwise seemingly the same issue. Sorry you're getting bounced to yet another thread again. I'm slowly discovering most outstanding issues are highly related though, so hopefully if I can figure this out we'll have solved everything in one go. |
No worries @tycho01. Thanks a lot for the time you've put into looking into that! |
Hi folks, this is a question rather than an issue. I'm somewhat new to the wonders of ramda and TypeScript and I might have a naive question here, so please bear with me 😉
I'm trying to build an object that matches a given interface through
compose
and mutlipleassoc
s, something likeDoing this, I'm getting a following error:
The effective and intermediate structure of x matches the
SomeType
at all steps of this function application. Is there some way around it besides usingas any
aftercompose
? Am I missing something pretty basic here?Edit: Sorry, now I see it might be related to #90
The text was updated successfully, but these errors were encountered: