You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently certain combinators are wholly unimplementable when infinite type recursion is required, this is largely affecting combinators related to or describable in terms of or with involvement of the M (Mockingbird) combinator.
Below you will find some of the todo items should infinite type recursion ever be possible in ELM:
moduleCombinators.Todoexposing (..)
{-| The Crossed Konstant Mocker combinator.Currently unable to implement due the M combinator requiring infinite type recursion.Implementable as `c (k m)` if that happens.-}ckm:ResultStringvalueckm =Result.Err"Unimplementable until the M combinator is implemented."{-| The Konstant Mocker combinator.Currently unable to implement due the M combinator requiring infinite type recursion.Implementable as `k m` if that happens.-}km:ResultStringvaluekm =Result.Err"Unimplementable until the M combinator is implemented."{-| The L combinator.Currently unable to implement due the M combinator requiring infinite type recursion.Implementable as `c b m` if that ever becomes possible.-}l:ResultStringvaluel =Result.Err"Unimplementable until the M combinator is implemented."{-| The M combinator.Currently unable to implement due to requiring infinite type recursion.Implementable as `s i i` if that ever becomes possible.-}m:ResultStringvaluem =Result.Err"Unimplemented currently."{-| The M2 combinator.Currently unable to implement due the M combinator requiring infinite type recursion.Implementable as `b m` if that happens.-}m2:ResultStringvaluem2 =Result.Err"Unimplementable until the M combinator is implemented."{-| The U combinator.Currently unable to implement due the M combinator requiring infinite type recursion.Implementable as `l o` if that happens.-}u:ResultStringvalueu =Result.Err"Unimplementable until the M combinator is implemented."{-| The Y combinator.Currently unable to implement due the M combinator requiring infinite type recursion.Implementable as `s l l` if that happens.-}y:ResultStringvaluey =Result.Err"Unimplementable until the M combinator is implemented."{-| The ϴ (Big Theta) combinator.Currently unable to implement due the M combinator requiring infinite type recursion.Implementable as `y o` if that happens.-}
θ :ResultString value
θ =Result.Err"Unimplementable until the M combinator is implemented."{-| The Ω (Big omega) combinator.Currently unable to implement due the M combinator requiring infinite type recursion.Implementable as `m m` if that happens.-}
ω :ResultString value
ω =Result.Err"Unimplementable until the M combinator is implemented."
This discussion was converted from issue #1 on May 21, 2024 10:15.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Currently certain combinators are wholly unimplementable when infinite type recursion is required, this is largely affecting combinators related to or describable in terms of or with involvement of the M (Mockingbird) combinator.
Below you will find some of the todo items should infinite type recursion ever be possible in ELM:
Beta Was this translation helpful? Give feedback.
All reactions