gota v0.4.0 Release Notes

Release Date: 2016-02-26 // about 8 years ago
  • โž• Added in 0.4.0

    • Getter methods for nrows and ncols.
    • ๐Ÿ”€ An InnerJoin function that performs an Inner Merge/Join of two DataFrames by the given keys.
    • An RightJoin and LeftJoin functions that performs outer right/outer left joins of two DataFrames by the given keys.
    • ๐Ÿ”€ A CrossJoin function that performs an Cross Merge/Join of two DataFrames.
    • Cell interface now have to implement the NA() method that will return a empty cell for the given type.
    • Cell interface now have to implement a Copy method.

    ๐Ÿ”„ Changed in 0.4.0

    • The cell interface is now exported: Cell.
    • Cell method NA() is now IsNA().
    • ๐Ÿ“œ The function parseColumn is now a method.
    • A number of fields and methods are now expoted.

    ๐Ÿ›  Fixed in 0.4.0

    • Now ensuring that generated subsets are in fact new copies entirely, not copying pointers to the same memory address.