Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

range_list_jack

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

range_list_jack

  • 0.1.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

RangeList

A RangeList implement to solve range union and except problem

Installation

From RubyGems
$ gem install range_list_jack
From source code

Get Code from Gitlab:

$ git clone https://gitlab.com/Jack.Mao/rangelist.git

Build and Install with Bundle:

$ cd rangelist
$ bundle install
$ bundle exec rake install

Uninstall

$ gem uninstall range_list_jack

Examples

require range_list

rl = RangeList::RangeList.new
rl.add([1, 5])
rl.print
# Should display: [1, 5)
rl.add([10, 20])
rl.print
# Should display: [1, 5) [10, 20)
rl.add([20, 20])
rl.print
# // Should display: [1, 5) [10, 20)
rl.add([20, 21])
rl.print
# Should display: [1, 5) [10, 21)
rl.add([2, 4])
rl.print
# Should display: [1, 5) [10, 21)
rl.add([3, 8])
rl.print
# Should display: [1, 8) [10, 21)
rl.remove([10, 10])
rl.print
# Should display: [1, 8) [10, 21)
rl.remove([10, 11])
rl.print
# Should display: [1, 8) [11, 21)
rl.remove([15, 17])
rl.print
# Should display: [1, 8) [11, 15) [17, 21)
rl.remove([3, 19])
rl.print
# Should display: [1, 3) [19, 21)

FAQs

Package last updated on 13 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc