Create new ObservableArray
from a vararg list.
Create new ObservableArray
from a vararg list.
Value varargs.
New ObservableArray
storing v
Create new ObservableArray
from an existing array.
Create new ObservableArray
from an existing array.
Array to be converted..
New ObservableArray
storing a
.
Return an empty ObservableArray
Return an empty ObservableArray
New empty ObservableArray
Returns an observable array containing the results of some element computation.
Returns an observable array containing the results of some element computation.
Note that elem
is computed n
times in total; it is not simply calculated once and reused.
Size of the new array. If this value is less than 1, an empty array is returned (matching the behavior of Scala's Array[T].fill function).
Computation to be calculated for each element.
Observable array of size n
, with each element containing the result of computation elem
.
Return an array returning repeated applications of a function to a start value.
Return an array returning repeated applications of a function to a start value.
Start value of the array.
Size of the new array. If this value is less than 1, an empty array is returned (matching the behavior of Scala's Array[T].iterate function).
Function to be repeatedly applied to previous element's value.
Array containing elements start, f(start), f(f(start)), ...
.
Create an observable array with given dimension.
Create an observable array with given dimension.
Size of the new array. This value cannot be negative.
An observable array with the specified dimension and zeroed elements.
NegativeArraySizeException
if n
is negative.
Returns an array containing equally spaced values in some integer interval.
Returns an array containing equally spaced values in some integer interval.
Start value of the array.
End value of the array, exclusive (that is, first value not included in array). If start
exceeds end
(>= end
if step
is positive or <= end
if step
is negative), then an empty array will
result.
Increment value of the array. This value can be negative, but not zero. If omitted, this value defaults to 1.
Observable array with values: start, start + step, start + 2 * step, ...
, up to, but not including,
end
.
IllegalArgumentException
if step
is 0.
Extract a JavaFX ObservableArray
from a ScalaFX ObservableArray
.
Extract a JavaFX ObservableArray
from a ScalaFX ObservableArray
.
ScalaFX ObservableArray
.
JavaFX ObservableArray
inside parameter.
Returns an array containing the results of some element computation that takes the element index as an argument.
Returns an array containing the results of some element computation that takes the element index as an argument.
Size of the new array. If this value is less than 1, an empty array is returned (matching the behavior of Scala's Array[T].tabulate function).
Function to be used to initialize element whose index is passed as an argument.
Observable array of size n
, with each element initialized by f
.
Companion Object for scalafx.collections.ObservableIntegerArray.