import list import atom import result import expect // `Any` data is data that we don"t know the type of yet. // We likely get data like this from interop with Erlang, or from // IO with the outside world. // pub external type Any; // Convert any Gleam data into `Any` data. // pub external fn from(a) -> Any = "gleam__stdlib" "identity"; // Unsafely cast any type into any other type.o // // This is an escape hatch for the type system that may be useful when wrapping // native Erlang APIs. It is to be used as a last measure only. // pub external fn unsafeCoerce(a) -> b = "gleam__stdlib" "identity"; pub external fn string(Any) -> Result(String, String) = "gleam__stdlib" "decode_string" test string { "" |> from |> string |> expect:equal(_, Ok("")) "Hello" |> from |> string |> expect:equal(_, Ok("Hello")) 1 |> from |> string |> expect:equal(_, Error("Expected a String, got `1`")) [] |> from |> string |> expect:equal(_, Error("Expected a String, got `[]`")) } pub external fn int(Any) -> Result(Int, String) = "gleam__stdlib" "decode_int" test int { 1 |> from |> int |> expect:equal(_, Ok(1)) 2 |> from |> int |> expect:equal(_, Ok(2)) 1.0 |> from |> int |> expect:equal(_, Error("Expected an Int, got `1.0`")) [] |> from |> int |> expect:equal(_, Error("Expected an Int, got `[]`")) } pub external fn float(Any) -> Result(Float, String) = "gleam__stdlib" "decode_float" test float { 1.0 |> from |> float |> expect:equal(_, Ok(1.0)) 2.2 |> from |> float |> expect:equal(_, Ok(2.2)) 1 |> from |> float |> expect:equal(_, Error("Expected a Float, got `1`")) [] |> from |> float |> expect:equal(_, Error("Expected a Float, got `[]`")) } // pub external fn atom(Any) -> Result(Atom, String) // = "gleam__stdlib" "decode_atom" //// test atom { //// // TODO //// // make an atom here //// // |> from //// // |> atom //// // |> expect:equal(_, Ok("")) //// // TODO //// // make an atom here //// // |> from //// // |> atom //// // |> expect:equal(_, Ok("ok")) //// let _ = 1 //// |> from //// |> atom //// |> expect:is_error //// [] //// |> from //// |> atom //// |> expect:is_error //// } pub external fn bool(Any) -> Result(Bool, String) = "gleam__stdlib" "decode_bool" test bool { True |> from |> bool |> expect:equal(_, Ok(True)) False |> from |> bool |> expect:equal(_, Ok(False)) 1 |> from |> bool |> expect:equal(_, Error("Expected a Bool, got `1`")) [] |> from |> bool |> expect:equal(_, Error("Expected a Bool, got `[]`")) } pub external fn thunk(Any) -> Result(fn() -> Any, String) = "gleam__stdlib" "thunk" //// test thunk { //// let _ = fn() { 1 } //// |> from //// |> thunk //// |> expect:is_ok //// let _ = fn(x) { x } //// |> from //// |> thunk //// |> expect:is_error //// let _ = 1 //// |> from //// |> thunk //// |> expect:is_error //// [] //// |> from //// |> thunk //// |> expect:is_error //// } // external fn list_any(Any) -> Result(List(Any), String) = "gleam__stdlib" "decode_list" // fn list_module() { // list // } // pub fn list(any, decode) { // any // |> list_any // |> result:then(_, fn(x) { list_module():traverse(x, decode) }) // } //// test list { //// let _ = [] //// |> from //// |> list(string) //// |> expect:equal(_, Ok([])) //// let _ = [] //// |> from //// |> list(atom) //// |> expect:equal(_, Ok([])) //// let _ = [1, 2, 3] //// |> from //// |> list(int) //// |> expect:equal(_, Ok([1, 2, 3])) //// let _ = [[1], [2], [3]] //// |> from //// |> list(list(int)) //// |> expect:equal(_, Ok([1, 2, 3])) //// let _ = 1 //// |> from //// |> list(string) //// |> expect:is_error //// let _ = 1.0 //// |> from() //// |> list(int) //// |> expect:is_error //// let _ = [""] //// |> from() //// |> list(int) //// |> expect:is_error //// [from(1), any:from("not an int")] //// |> from //// |> list(int) //// |> expect:is_error //// } pub external fn tuple(Any) -> Result({Any, Any}, String) = "gleam__stdlib" "decode_tuple" test tuple { {1, []} |> from |> tuple |> expect:equal(_, Ok({from(1), from([])})) {"ok", "ok"} |> from |> tuple |> expect:equal(_, Ok({from("ok"), from("ok")})) {1} |> from |> tuple |> expect:is_error {1, 2, 3} |> from |> tuple |> expect:is_error {1, 2.0} |> from |> tuple |> result:then(_, fn(x) { let {a, b} = x a |> int |> result:map(_, fn(i) { {i, b} }) }) |> result:then(_, fn(x) { let {a, b} = x b |> float |> result:map(_, fn(f) { {a, f} }) }) |> expect:equal(_, Ok({1, 2.0})) } pub external fn field(Any, a) -> Result(Any, String) = "gleam__stdlib" "decode_field" test field { let Ok(ok_atom) = atom:from_string("ok") {ok = 1} |> from |> field(_, ok_atom) |> expect:equal(_, Ok(from(1))) {earlier = 2, ok = 3} |> from |> field(_, ok_atom) |> expect:equal(_, Ok(from(3))) {} |> from |> field(_, ok_atom) |> expect:is_error 1 |> from |> field(_, ok_atom) |> expect:is_error [] |> from |> field(_, []) |> expect:is_error }