pdavidow
pdavidow
``` string_Random_TreeRandomInsertStyle = "Insert Random L/R" string_Right_TreeRandomInsertStyle = "Insert Right" string_Left_TreeRandomInsertStyle = "Insert Left" treeRandomInsertStyleDecoder : String -> Decoder TreeRandomInsertStyle treeRandomInsertStyleDecoder value = case value of string_Random_TreeRandomInsertStyle -> Decode.succeed TreeRandomInsertStyle.Random...
http://package.elm-lang.org/packages/elm-lang/html/2.0.0/Html-Attributes#checked also applies to `type_ "radio"`
Arithmetic.isPrime (1000 ^ 1000) HANGS SYSTEM
http://swannodette.github.io/mori/#sortedSet What determines sort order?
http://swannodette.github.io/mori/#set What determines uniqueness of elements?
http://swannodette.github.io/mori/#repeatedly Return a lazy **of** sequence of => Return a lazy sequence of
http://swannodette.github.io/mori/#repeat Return a lazy **of** sequence of => Return a lazy sequence of
http://swannodette.github.io/mori/#iterate Creates **a** lazy sequences of => Creates lazy sequences of
http://swannodette.github.io/mori/#takeWhile ``` a = [0,1,2,3,4,5,6,7,8,9] mori.takeWhile ((n) -> n < 5), r // => (0 1 2 3 4) ``` ((n) -> n < 5), **r** => ((n) -> n...
http://swannodette.github.io/mori/#take colletion => colle**c**tion ``` var a = mori.range(); // infinite sequence mori.take(10, r); // => (0 1 2 3 4 5 6 7 8 9) ``` (10, **r**) =>...