Michael Messer
Michael Messer
Is it possible to use the units from js-quantities? https://github.com/gentooboontoo/js-quantities/blob/master/src/quantities.js
`nlp_compromise.value("5 and a half").number` is equal to 6. It should be equal to 5.5. I am using the latest from head.
- [x] Handle Spaces - [x] Vulgar Fractions (Single Code Point) - [ ] Subscript, Superscripts, and Unicode Fractions Slash - [ ] Handle words
New numbers: dozen = 12 gross = 144 pair = 2 ream = 500 mol = 6.02214179 × 10^23
The weird type signature is required because m1 must be PushM and m. ```haskell f :: forall t m a. (Reflex t, MonadHold t m) => (forall m1. (MonadHold t...
Should the be a MonadDynamic typeclass? (like MonadIO). This would make working with monad stacks easier. ``` class MonadDynamic m where liftDynamic :: Dynamic t x -> m t x...
Should reflex include a deep PatchMap? It would be like PatchMap but have an update option.
Vinyl's `Rec` is similar to `FHList`. It turns out thats its possible to write some interesting functions related to reflex with it. Basically it is possible to easily convert between...
```haskell data UnheldDynanic t a = UnheldDynanic a (Event t a) instance Reflex t => Functor (UnheldDynanic t) where fmap f (UnheldDynanic x e) = UnheldDynanic (f x) (fmap f...
Since Dynamic is a specific case of Increment, would it make sense to define Dynamic in terms of Incremental? Or are there performance problems that I did not think of?...