Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evolution-gaming/random
Pure random number generator
https://github.com/evolution-gaming/random
cats random rng scala
Last synced: 3 months ago
JSON representation
Pure random number generator
- Host: GitHub
- URL: https://github.com/evolution-gaming/random
- Owner: evolution-gaming
- License: mit
- Created: 2019-03-06T20:27:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T17:36:59.000Z (5 months ago)
- Last Synced: 2024-09-12T03:35:04.338Z (5 months ago)
- Topics: cats, random, rng, scala
- Language: Scala
- Size: 117 KB
- Stars: 4
- Watchers: 10
- Forks: 3
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Random
[![Build Status](https://github.com/evolution-gaming/random/workflows/CI/badge.svg)](https://github.com/evolution-gaming/random/actions?query=workflow%3ACI)
[![Coverage Status](https://coveralls.io/repos/evolution-gaming/random/badge.svg)](https://coveralls.io/r/evolution-gaming/random)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/20c2455aa4e14e8a85b362f3e508383d)](https://app.codacy.com/gh/evolution-gaming/random/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.evolution/random_2.13/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.evolution/random_2.13)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellowgreen.svg)](https://opensource.org/licenses/MIT)```scala
trait Random[F[_]] {def int: F[Int]
def long: F[Long]
def float: F[Float]
def double: F[Double]
}
```## Setup
```scala
addSbtPlugin("com.evolution" % "sbt-artifactory-plugin" % "0.0.2")libraryDependencies += "com.evolution" %% "random" % "1.0.4"
```