▽F# subreddit ●12/20 03:59 Behavior bigint.parse from hex values.questionI was creating a function to parse from hex value to bigint and noticed something "weird":(The function takes a 6 length string and does the parse over the initial 5)let calculateFromHex(input: string) = let value = input.Substring(0, input.Length - 1) (Int32.Parse(value, System.Globalization.NumberStyles.HexNumber)) |> bigintlet calculate
▽Scala ●12/19 20:24 Lichess & Scala 3lichess.org/@/thib...sbt 2.x remote cache (an extended PR description)eed3si9n.com/sbt-re...ducktape 0.2.0-M2 is out with massive UX and QOL changesgithub.com/araink...Try it out! FP Illuminated now provides several ways of finding the deck(s) that you are looking for 🎯😀 No more staring at a static list of titles 🔍 😕!fpilluminated.com/The compilation cost of implicits | Ty
▽let reddit = OCaml;; ●12/19 20:04 VoteThe OCaml Weekly News for 2023-12-19 is outalan.petitepomme.net/cwn/20...VotesharesaveDo polymorphic variants use isorecursive or equirecursive types?Trying to write my own datatypes system using OCaml as a starting point. Am I right in thinking that (nominal) variants are isorecursive but polymorphic variants are equirecursive? And implementing this basically boils down to caching data