General 4-int tuple.
Attributes
- i1
1st value.
- i2
2nd value.
- i3
3rd value.
- i4
4th value.
- Companion:
- object
- Source:
- CPInt4.scala
- Graph
- Supertypes
- Known subtypes
- class CPRect
Members list
Value members
Constructors
Creates 4-int tuple with the same value.
Creates 4-int tuple from two 2-int tuples.
Creates 4-int tuple from two 2-int tuples.
Attributes
- t1
Tuple for 1st and 2nd value.
- t2
Tuple for 3rd and 4th value.
- Source:
- CPInt4.scala
Creates 4-int tuple from given parameters.
Creates 4-int tuple from given parameters.
Attributes
- i3
3rd value.
- i4
4th value.
- t1
Tuple for 1st and 2nd values.
- Source:
- CPInt4.scala
Creates 4-int tuple from given parameters.
Creates 4-int tuple from given parameters.
Attributes
- i1
1st value.
- i2
2rd value.
- t2
3rd and 4th values.
- Source:
- CPInt4.scala
Concrete methods
Attributes
- Definition Classes
- Ordered
- Source:
- CPInt4.scala
Inherited methods
Multiplies given value with each member of this tuple.
Multiplies given value with each member of this tuple.
Attributes
- x
Value to multiple by.
- Returns:
New tuple as a result of multiplication.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Multiple two tuples by multiplying their corresponding values.
Multiple two tuples by multiplying their corresponding values.
Attributes
- x
Other tuple to multiply with.
- Note:
Tuples must have the same arity.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Adds given value to each member of this tuple.
Adds given value to each member of this tuple.
Attributes
- x
Value to add.
- Returns:
New tuple as a result of addition.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Adds two tuples by adding their corresponding values.
Adds two tuples by adding their corresponding values.
Attributes
- x
Tuple to add.
- Note:
Tuples must have the same arity.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Subtracts given value from each member of this tuple.
Subtracts given value from each member of this tuple.
Attributes
- x
Value to subtract.
- Returns:
New tuple as a result of subtraction.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Subtracts given tuple from this one by subtracting their corresponding values.
Subtracts given tuple from this one by subtracting their corresponding values.
Attributes
- x
Tuple to subtract.
- Note:
Tuples must have the same arity.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Divides each member of this tuple by the given value.
Divides each member of this tuple by the given value.
Attributes
- x
Value to divide by.
- Returns:
New tuple as a result of division.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Device this tuple by the given tuple by dividing their corresponding values.
Device this tuple by the given tuple by dividing their corresponding values.
Attributes
- x
Other tuple to divide by.
- Note:
Tuples must have the same arity.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Less-then '<' operator for int
.
Less-then '<' operator for int
.
Attributes
- x
Other tuple to compare.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Less-then '<' operator for tuples.
Less-then '<' operator for tuples.
Attributes
- x
Other tuple to compare.
- Note:
Tuples must have the same arity.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Less-then-or-equal '<=' operator for tuples.
Less-then-or-equal '<=' operator for tuples.
Attributes
- x
Other tuple to compare.
- Note:
Tuples must have the same arity.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Less-then-or-equal '<=' operator for int
.
Less-then-or-equal '<=' operator for int
.
Attributes
- x
Other tuple to compare.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Greater-then '>' operator for tuples.
Greater-then '>' operator for tuples.
Attributes
- x
Other tuple to compare.
- Note:
Tuples must have the same arity.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Greater-then '>' operator for int
.
Greater-then '>' operator for int
.
Attributes
- x
Other tuple to compare.
- Note:
Tuples must have the same arity.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Greater-then-or-equal '>=' operator for tuples.
Greater-then-or-equal '>=' operator for tuples.
Attributes
- x
Other tuple to compare.
- Note:
Tuples must have the same arity.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Greater-then-or-equal '>=' operator for int
.
Greater-then-or-equal '>=' operator for int
.
Attributes
- x
Other tuple to compare.
- Note:
Tuples must have the same arity.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Creates a copy of this tuple.
Compares the receiver object (this
) with the argument object (that
) for equivalence.
Compares the receiver object (this
) with the argument object (that
) for equivalence.
Any implementation of this method should be an equivalence relation:
- It is reflexive: for any instance
x
of typeAny
,x.equals(x)
should returntrue
. - It is symmetric: for any instances
x
andy
of typeAny
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any instances
x
,y
, andz
of typeAny
ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
.
If you override this method, you should verify that your implementation remains an equivalence relation.
Additionally, when overriding this method it is usually necessary to override hashCode
to ensure that
objects which are "equal" (o1.equals(o2)
returns true
) hash to the same scala.Int.
(o1.hashCode.equals(o2.hashCode)
).
Attributes
- that
the object to compare against this object for equality.
- Returns:
true
if the receiver object is equivalent to the argument;false
otherwise.- Definition Classes
- CPIntTuple -> Any
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Tests whether all values in this tuple are one.
Tests whether all values in this tuple are one.
Attributes
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Checks if this tuple contains only positive (> 0) numbers.
Checks if this tuple contains only positive (> 0) numbers.
Attributes
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Checks if this tuple contains only whole (>= 0) numbers.
Checks if this tuple contains only whole (>= 0) numbers.
Attributes
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Tests whether all values in this tuple are zero.
Tests whether all values in this tuple are zero.
Attributes
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Maps this tuple using given function.
Maps this tuple using given function.
Attributes
- f
Mapping function.
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
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
- CPIntTuple -> Any
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala
Concrete fields
Attributes
- Source:
- CPInt4.scala
Attributes
- Source:
- CPInt4.scala
Attributes
- Source:
- CPInt4.scala
Attributes
- Source:
- CPInt4.scala
Inherited fields
Arity of this tuple.
Attributes
- Inherited from:
- CPIntTuple (hidden)
- Source:
- CPIntTuple.scala