alphabetify

Hex package for Elixir

Latest version: 1.1.0 registry icon
Maintenance score
0
Safety score
0
Popularity score
1
Check your open source dependency risks. Get immediate insight about security, stability and licensing risks.
Security
  Vulnerabilities
Version Suggest Low Medium High Critical
1.1.0 0 0 0 0 0
1.0.9 0 0 0 0 0
1.0.8 0 0 0 0 0
1.0.3 0 0 0 0 0
1.0.2 0 0 0 0 0
1.0.1 0 0 0 0 0
1.0.0 0 0 0 0 0
0.1.0 0 0 0 0 0

Stability
Latest release:

1.1.0 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform

Licensing

Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.

GPL-3.0   -   GNU General Public License v3.0 only

Not a wildcard

Not proprietary

OSI Compliant



Alphabetify

Build Status

Create an alphabetical hash. Taking an existing alphabetic hash (of any length),
will return the next hash in sequence. If all characters in hash are rolled over,
will append a new char (increase the length by 1.)
eg. 'ZZZZ' -> 'AAAAA' eg. 'AAAZ' -> 'AABA'

Installation

The package can be installed as:

  1. Add alphabetify to your list of dependencies in mix.exs:
elixir
def deps do
  [{:alphabetify, "~> 1.0.0"}]
end

Important

Version 1.0.0 uses DETS to store the hash. If you are upgrading from an earlier version, you will want to seed your hash again to transfer your last used hash to the new data store.