vault


License

License

MIT
GroupId

GroupId

io.chrisdavenport
ArtifactId

ArtifactId

vault_sjs0.6_2.11
Last Version

Last Version

2.0.0-M2
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.11

How to add to project

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

Dependencies

compile (5)

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

test (2)

Group / Artifact Type Version
org.scala-js : scalajs-test-interface_2.11 jar 0.6.28
org.typelevel : cats-testkit_sjs0.6_2.11 jar 2.0.0-M4

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-M2
2.0.0-M1
1.0.0
1.0.0-M1
0.1.0
0.0.4