Safe Haskell | None |
---|---|
Language | Haskell2010 |
DataFrame.Internal.Row
Synopsis
- data Any where
- Value :: forall a. Columnable a => a -> Any
- showValue :: Columnable a => a -> Text
- toAny :: Columnable a => a -> Any
- fromAny :: Columnable a => Any -> Maybe a
- type Row = Vector Any
- (!?) :: [a] -> Int -> Maybe a
- mkColumnFromRow :: Int -> [[Any]] -> Column
- toRowList :: DataFrame -> [Row]
- toRowVector :: [Text] -> DataFrame -> Vector Row
- mkRowFromArgs :: [Text] -> DataFrame -> Int -> Row
- mkRowRep :: DataFrame -> Set Text -> Int -> Row
- sortedIndexes' :: Bool -> Vector Row -> Vector Int
Documentation
Constructors
Value :: forall a. Columnable a => a -> Any |
showValue :: Columnable a => a -> Text Source #
toAny :: Columnable a => a -> Any Source #
Wraps a value into an Any type. This helps up represent rows as heterogenous lists.