bucketsjs

WebJar for bucketsjs

License

License

MIT
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

bucketsjs
Last Version

Last Version

1.90.0
Release Date

Release Date

Type

Type

jar
Description

Description

bucketsjs
WebJar for bucketsjs
Project URL

Project URL

http://webjars.org

Download bucketsjs

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/bucketsjs/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>bucketsjs</artifactId>
    <version>1.90.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/bucketsjs/
implementation 'org.webjars.bower:bucketsjs:1.90.0'
// https://jarcasting.com/artifacts/org.webjars.bower/bucketsjs/
implementation ("org.webjars.bower:bucketsjs:1.90.0")
'org.webjars.bower:bucketsjs:jar:1.90.0'
<dependency org="org.webjars.bower" name="bucketsjs" rev="1.90.0">
  <artifact name="bucketsjs" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='bucketsjs', version='1.90.0')
)
libraryDependencies += "org.webjars.bower" % "bucketsjs" % "1.90.0"
[org.webjars.bower/bucketsjs "1.90.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Buckets

Build Status NPM Version

A JavaScript Data Structure Library

Buckets is a complete, fully tested and documented data structure library written in pure JavaScript.

Included data structures

Buckets also includes several functions for manipulating arrays.

Supported platforms

  • Every desktop and mobile browser (including IE6)
  • Node.js

If it supports JavaScript, it probably supports buckets.

Downloading Buckets

Download directly

Then, add it as a script tag to your page:

<script src="buckets.js"></script>
<script>
  var aSet = new buckets.Set();
</script>

Or install bucketsjs using bower

bower install bucketsjs

Or use an AMD loader

require(["./bower/bucketsjs/buckets.js"], function(buckets) {
  var hm = new buckets.Dictionary();
});

Or install buckets-js using npm

npm install buckets-js

In Node.js: var buckets = require('buckets-js');.

Usage

var a = new buckets.Set();
var b = new buckets.Set();
a.add(1);
a.add(2);
b.add(2);
a.union(b); // {1,2}

Read the documentation.

Building Buckets

There's nothing else you need to use buckets. However, this guide may help you if you wish to contribute to the project or modify it.

Versions

Version
1.90.0