Giter VIP home page Giter VIP logo

flux.collections's People

Contributors

eacasanovaspedre avatar

Watchers

 avatar  avatar  avatar

flux.collections's Issues

Create Hamt based Set

Create a Set version of Hamt.

  • Rename current Hamt map to HamtMap
  • Add the set implementation as HamtSet
  • Add union, intersect and difference functions

Fix stupid condition when removing items

The if conditions are wrong. children is never empty, since it's the array of children when the node is a Branch, it's never empty and I ask if it's empty.
I have to ask if the newBitmap is empty instead.
The same happens for the elif condition. It's length is never 1. I must ask whether the newBitmap contains only one bit on.

| Branch (bitmap, children) ->
    let bitIndex = childBitIndex prefix

    if containsChild bitIndex bitmap then
        let childArrayIndex = childArrayIndex bitIndex bitmap

        match remove eqComparer targetKey targetHash (nextLayerPrefix prefix) (Array.item childArrayIndex children)
            with
        | NotFound -> NotFound
        | Removed child -> Removed(Branch(bitmap, Array.put child childArrayIndex children))
        | NothingLeft ->
            let newBitmap = Bitmap.clearBit bitIndex bitmap

            if Array.isEmpty children then
                NothingLeft
            elif Array.length children = 1 then
                Removed(Array.head children)
            else
                Removed(Branch(newBitmap, Array.remove childArrayIndex children))
    else
        NotFound

Add or optimize functions to Hamt

Functions to add:

  • - ofSeq
  • - ofSeqStructural
  • - ofSeqWith
  • - filter
  • - exists
  • - fold and foldBack (how much sense would foldBack make for an unordered collection)
  • - forall
  • - iter
  • - map
  • - partition
  • - pick and tryPick
  • - findKey and tryFindKey (I don't plan to do this)
  • - change

Functions to optimize:

  • - toSeq group of functions (Move to a separate issue #25)

Potentially more functions

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.