Module

Neon.Class.HasFromArray

Package
purescript-neon
Repository
tfausak/purescript-neon

#HasFromArray Source

class HasFromArray a b  where

Represents types that can be converted from an array.

fromArray [1] :: List Int -- Cons 1 Nil
fromArray [1] :: Maybe Int -- Just 1
fromArray ['a', 'b'] :: String -- "ab"

Members

Instances