All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.peterpotts.example.RandomExample.scala Maven / Gradle / Ivy

The newest version!
package com.peterpotts.example

import java.security.SecureRandom

import scala.util.Random

object RandomExample extends RandomExample(Random)

object SecureRandomExample extends RandomExample(new SecureRandom)

class RandomExample(random: Random) extends Example {
  private[example] def nextLong() = random.nextLong()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy