A Ok creator
Create Ok result from value
@type t(val) :: {:ok, val}
iex> Result.Ok.of("a") {:ok, "a"} iex> Result.Ok.of(12345) {:ok, 12345}