Route

interface Route<P : Position<*>> : Iterable<P> , Serializable

Parameters

type of Position followed by [Route]

Inheritors

Properties

Link copied to clipboard
abstract val points: List<P>

Functions

Link copied to clipboard
abstract fun getPoint(step: Int): P
Link copied to clipboard
abstract operator fun iterator(): Iterator<P>
Link copied to clipboard
abstract fun length(): Double
Link copied to clipboard
fun <R> Iterable<R>.randomElement(randomGenerator: <Error class: unknown class>): R

Returns a random element of the Iterable using the provided randomGenerator.

Link copied to clipboard
fun <R> Iterable<R>.shuffled(randomGenerator: <Error class: unknown class>): Iterable<R>

Fisher–Yates shuffle algorithm using a RandomGenerator. More information on Wikipedia.

Link copied to clipboard
abstract fun size(): Int
Link copied to clipboard
open fun stream(): Stream<P>