Open
Description
Reading https://fscheck.github.io/FsCheck//TestData.html
It says:
"Arb.from<'a> returns the registered Arbitrary instance for the given type 'a"
But that's not available, this won't compile.
open FsCheck.FSharp
open Laterbase.Core
open System
Console.Clear ()
let genBytes = Arb.from<byte>
Nor is it in the API docs
https://fscheck.github.io/FsCheck/reference/fscheck-fsharp-arb.html
I'm basically trying to re-write the 2.0 function in 3.0, and I'm at a bit of a loss.
Arb.generate<byte> |> Gen.arrayOfLength 16