SeqLikeImutDblN

ostrat.SeqLikeImutDblN

SeqLikeImut with DblNElems.

Attributes

Graph
Supertypes
trait SpecialT
trait SeqLikeBacked[A]
trait SeqLikeValueN[A]
trait SeqLike[A]
class Any
Show all
Known subtypes
trait ArrDblN[A]
trait ArrLSegDblN[VT, A]
trait ArrLSegDbl4[VT, A]
class LineSegLLArr
class LSeg2Arr
trait ArrLSegDbl6[VT, A]
trait ArrDbl1[A]
class AngleArr
trait ArrDbl2[A]
class LatLongArr
class Pt2Arr
class PtFm2Arr
class PtKm2Arr
class PtM2Arr
class PtPm2Arr
class Vec2Arr
class VecFm2Arr
class VecKm2Arr
class VecM2Arr
class VecPm2Arr
class MyDbl2Arr
trait ArrDbl3[A]
class Pt3Arr
class PtKm3Arr
class PtM3Arr
trait ArrDbl4[A]
class LineSegM2Arr
trait ArrDbl5[A]
trait ArrDbl6[A]
class LineSegM3Arr
trait ArrDbl7[A]
trait SeqLikeImutDbl1[A]
trait SeqLikeImutDbl2[A]
class LinePathLL
class PolygonLL
trait Pt2SeqLike
class PolygonGen
trait Pt2SeqSpec
class DoDeclign
class LinePath
trait Polygon5Plus
trait Polygon6Plus
trait HexReg
class HexRegImp
trait Hexlign
class HexParrX
class HexParrY
trait PtFm2SeqLike
trait SeqSpecDbl2[A]
trait LinePathDbl2[VT]
class LinePathFm2
class LinePathKm2
class LinePathM2
class LinePathPm2
trait PolygonDbl2[VT]
trait PolygonLen2[VT]
class PolygonKm2
trait PolygonLen2P3[VT]
trait PolygonLen2P4[VT]
trait PolygonM2P4
trait QuadM2
trait RectangleM2
trait RectM2
class SqlignM2
trait QuadLen2[VT]
trait RectangleLen2[VT]
trait RectLen2[VT]
trait SqlignLen2[VT]
trait SquareLen2[VT]
trait PolygonM2P3
class TriangleM2
trait TriangleLen2[VT]
trait PolygonM2
class PolygonM2Gen
class PolygonPm2
trait SeqLikeImutDbl3[A]
trait PtKm3SeqLike
trait PtKm3SeqSpec
trait SeqSpecDbl3[A]
trait LinePathDbl3[VT]
class LinePathKm3
class LinePathM3
trait PolygonDbl3[VT]
trait PolygonLength3[VT]
class PolygonKm3
class PolygonM3
trait SeqLikeImutDbl4[A]
trait SeqSpecDbl4[A]
trait SeqLikeImutDbl5[A]
trait SeqSpecDbl5[A]
trait SeqLikeImutDbl6[A]
trait SeqSpecDbl6[A]
trait SeqLikeImutDbl7[A]
trait SeqSpecDbl7[A]
class ShapeGenOld
trait SeqSpecDblN[A]
trait LinePathDblN[VT]
trait PolygonDblN[VT]
Show all

Members list

Type members

Types

type ThisT <: SeqLikeImutDblN[A]

Gives the final type of this class.

Gives the final type of this class.

Attributes

Value members

Abstract methods

def fromArray(array: Array[Double]): ThisT

Concrete methods

def unsafeSameSize(length: Int): ThisT

Inherited methods

final def arrayLen: Int

The length of the backing Array Double.

The length of the backing Array Double.

Attributes

Inherited from:
ArrayDblBacked
def fElemStr: A => String

String for element, can be overridden.

String for element, can be overridden.

Attributes

Inherited from:
SeqLike
def mutateElemUnsafe(index: Int, f: A => A): Unit

Mutates an element in the Arr at the given index. This method should rarely be needed by end users, but is used by the initialisation and factory methods.

Mutates an element in the Arr at the given index. This method should rarely be needed by end users, but is used by the initialisation and factory methods.

Attributes

Inherited from:
SeqLikeBacked
def setElemsUnsafe(index: Int, elems: A*): Unit

Sets / mutates elements in the Arr. This method should rarely be needed by end users, but is used by the initialisation and factory methods.

Sets / mutates elements in the Arr. This method should rarely be needed by end users, but is used by the initialisation and factory methods.

Attributes

Inherited from:
SeqLikeBacked
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
SeqLike -> Any
Inherited from:
SeqLike

Inherited and Abstract methods

Attributes

Inherited from:
ArrayDblBacked
def elem(index: Int): A

Accesses the specifying sequence element by a 0 based index. For Sequs this will an alternative name for apply.

Accesses the specifying sequence element by a 0 based index. For Sequs this will an alternative name for apply.

Attributes

Inherited from:
SeqLike
def elemEq(a1: A, a2: A): Boolean

Checks if 2 values of the specifying sequence are equal.

Checks if 2 values of the specifying sequence are equal.

Attributes

Inherited from:
SeqLikeValueN

The number of atomic values, Ints, Doubles, Longs etc that specify / construct an element of this immutable flat Array based collection class.

The number of atomic values, Ints, Doubles, Longs etc that specify / construct an element of this immutable flat Array based collection class.

Attributes

Inherited from:
SeqLikeValueN

The element String allows the composition of toString for the whole collection. The syntax of the output will be reworked.

The element String allows the composition of toString for the whole collection. The syntax of the output will be reworked.

Attributes

Inherited from:
SeqLike
def foreach[U](f: A => U): Unit

Performs a side effecting function on each element of the specifying sequence in order.

Performs a side effecting function on each element of the specifying sequence in order.

Attributes

Inherited from:
SeqLike
def numElems: Int

The number of data elements in the defining sequence. These collections use underlying mutable Arrays and ArrayBuffers. The length of the underlying Array will be a multiple of this number. For Sequs this will be an alternative name for length.

The number of data elements in the defining sequence. These collections use underlying mutable Arrays and ArrayBuffers. The length of the underlying Array will be a multiple of this number. For Sequs this will be an alternative name for length.

Attributes

Inherited from:
SeqLike
def setElemUnsafe(index: Int, newElem: A): Unit

Sets / mutates an element in the Arr at the given index. This method should rarely be needed by end users, but is used by the initialisation and factory methods.

Sets / mutates an element in the Arr at the given index. This method should rarely be needed by end users, but is used by the initialisation and factory methods.

Attributes

Inherited from:
SeqLikeBacked

String specifying the type of this object.

String specifying the type of this object.

Attributes

Inherited from:
SeqLike