bodil / purescript-signal

Elm style FRP library for PureScript
Apache License 2.0
258 stars 44 forks source link

missing foreign implementation for foldpP #41

Closed robkuz closed 8 years ago

robkuz commented 8 years ago

Hi,

I just came across this bug in Signal.purs

foreign import foldpP :: forall a b c. (c -> Signal c) -> (a -> b -> b) -> b -> (Signal a) -> (Signal b)

[1/1 MissingFFIImplementations]
  The following values are not defined in the foreign module for module Signal:
  foldpP

and Indeed the corresponding Signal.js doesn't have a foldpP implementation. happens with psc versions 0.8.2 - 0.8.4

The easiest way (for me) is to delete that declaration. However I don't know if that should/is the intention. Therefore no PR for now

robkuz commented 8 years ago

ohkay - just saw there is a PR for that already. closing report then.