Route

interface Route<P : Position<out Any>?> : Iterable<T> , Serializable

Parameters

<P>

type of Position followed by Route

Inheritors

Functions

Link copied to clipboard
open fun forEach(action: Consumer<in T>)
Link copied to clipboard
abstract fun getPoint(step: Int): P
Link copied to clipboard
abstract fun getPoints(): List<P>
Link copied to clipboard
abstract fun iterator(): Iterator<T>
Link copied to clipboard
abstract fun length(): Double
Link copied to clipboard
abstract fun size(): Int
Link copied to clipboard
Link copied to clipboard
abstract fun stream(): Stream<P>