vault


License

License

MIT
GroupId

GroupId

io.chrisdavenport
ArtifactId

ArtifactId

vault_sjs0.6_2.12
Last Version

Last Version

2.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

vault
vault
Project URL

Project URL

https://github.com/ChristopherDavenport/vault
Project Organization

Project Organization

io.chrisdavenport
Source Code Management

Source Code Management

https://github.com/ChristopherDavenport/vault

Download vault_sjs0.6_2.12

How to add to project

<!-- https://jarcasting.com/artifacts/io.chrisdavenport/vault_sjs0.6_2.12/ -->
<dependency>
    <groupId>io.chrisdavenport</groupId>
    <artifactId>vault_sjs0.6_2.12</artifactId>
    <version>2.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/io.chrisdavenport/vault_sjs0.6_2.12/
implementation 'io.chrisdavenport:vault_sjs0.6_2.12:2.0.0'
// https://jarcasting.com/artifacts/io.chrisdavenport/vault_sjs0.6_2.12/
implementation ("io.chrisdavenport:vault_sjs0.6_2.12:2.0.0")
'io.chrisdavenport:vault_sjs0.6_2.12:jar:2.0.0'
<dependency org="io.chrisdavenport" name="vault_sjs0.6_2.12" rev="2.0.0">
  <artifact name="vault_sjs0.6_2.12" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.chrisdavenport', module='vault_sjs0.6_2.12', version='2.0.0')
)
libraryDependencies += "io.chrisdavenport" % "vault_sjs0.6_2.12" % "2.0.0"
[io.chrisdavenport/vault_sjs0.6_2.12 "2.0.0"]

Dependencies

compile (5)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.12.9
org.scala-js : scalajs-library_2.12 jar 0.6.28
org.typelevel : cats-core_sjs0.6_2.12 jar 2.0.0
org.typelevel : cats-effect_sjs0.6_2.12 jar 2.0.0
io.chrisdavenport : unique_sjs0.6_2.12 jar 2.0.0

test (3)

Group / Artifact Type Version
org.scala-js : scalajs-test-interface_2.12 jar 0.6.28
org.typelevel : cats-laws_sjs0.6_2.12 jar 2.0.0
org.typelevel : discipline-specs2_sjs0.6_2.12 jar 1.0.0-RC1

Project Modules

There are no modules declared in this project.

vault Build Status Maven Central

Vault is a tiny library that provides a single data structure called vault.

Inspiration was drawn from HeinrichApfelmus/vault and the original blog post

A vault is a type-safe, persistent storage for values of arbitrary types. Like Ref, it should be capable of storing values of any type in it, but unlike Ref, behave like a persistent, first-class data structure.

It is analogous to a bank vault, where you can access different bank boxes with different keys; hence the name.

Microsite

Head on over to the microsite

Quick Start

To use vault in an existing SBT project with Scala 2.11 or a later version, add the following dependencies to your build.sbt depending on your needs:

libraryDependencies ++= Seq(
  "io.chrisdavenport" %% "vault" % "<version>",
)

Versions

Version
2.0.0
2.0.0-RC2
2.0.0-RC1
2.0.0-M2
2.0.0-M1
1.0.0
1.0.0-M1
0.1.0
0.0.4