dataframe-core 2.1.1.1 → 2.1.1.2
raw patch · 2 files changed
+7/−1 lines, 2 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ DataFrame.Core: fromUExpr :: Columnable a => UExpr -> Maybe (Expr a)
+ DataFrame.Core: toNamedExpr :: Columnable a => Text -> Expr a -> NamedExpr
+ DataFrame.Core: toUExpr :: Columnable a => Expr a -> UExpr
Files
- dataframe-core.cabal +1/−1
- src/DataFrame/Core.hs +6/−0
dataframe-core.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.4 name: dataframe-core-version: 2.1.1.1+version: 2.1.1.2 synopsis: Core data structures for the dataframe library. description: Minimal interchange-format types for the @dataframe@ ecosystem:
src/DataFrame/Core.hs view
@@ -40,6 +40,9 @@ -- * Expressions Expr, NamedExpr,+ toNamedExpr,+ toUExpr,+ fromUExpr, eSize, prettyPrint, prettyPrintWidth,@@ -89,8 +92,11 @@ Expr, NamedExpr, eSize,+ fromUExpr, prettyPrint, prettyPrintWidth,+ toNamedExpr,+ toUExpr, ) import DataFrame.Internal.Row ( Any,