GithubHelp home page GithubHelp logo

yweak's Introduction

YWeak

Utilizes WeakRef object to enable iteration with weak reference map.

Required ES6 & WeakRef, WeakMap, WeakSet objects available in runtime;

Inspired by:

Implementations

Usage:

final map = new IterableWeakMap<MyObject, AnyType>();
  1. Best performance with keyIterator
for (key in map.keyIterator())
  1. Extra get() overhead for value iterator
for (value in map)
  1. Extra get() and arbitrarty key/value pair/array object overhead for key/value iterator
for (key => value in map)
map.forEach(...)
map.find(...) // can be halted

Usage:

final set = new IterableWeakSet<MyObject>();
  1. Best performance with keyIterator
for (key in set)
  1. Extra arbitrarty key/value pair/array object overhead for key/value iterator
for (key => value in set)
set.forEach(...)
set.find(...) // can be halted

Test

Primitive unit tests are available to run in browser console. Execute haxe text.hxml and open src/test/resources/index.html in browser.

Release

  1. update version in haxelib.json
  2. commit
  3. navigate to src/main/haxe
  4. execute haxelib submit , enter package "." if requested

yweak's People

Contributors

jozefchutka avatar

Watchers

 avatar

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.