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
abstract fun size(): Int
Link copied to clipboard
open fun stream(): Stream<P>