T - Specifies the type of elements in the sequence.
Remarks: The container is allocated in memory and can contain at most 281,474,976,710,656 elements of type T.
public class FVector64<T> extends java.lang.Object implements IRanSequence64<T,FVector64.Iterator>, IInsertSequence<T,FVector64.Iterator>
| Modifier and Type | Class and Description |
|---|---|
class |
FVector64.Iterator
Defines a random iterator that provides constant-time
methods for moving forward and backward in arbitrary-sized
steps and for comparing two iterators.
|
class |
FVector64.ReverseIterator
Defines a random-access iterator that enables
backward traversal of a range.
|
class |
FVector64.UIterator
Defines a random-access unchecked iterator that provides
constant-time methods for moving forward and backward in
arbitrary-sized steps and for comparing two iterators.
|
class |
FVector64.UReverseIterator
Defines a reverse iterator that enables backward
traversal of a range.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Add(long n,
T item)
Appends to the back of the sequence n copies of
the specified value.
|
void |
Add(T item)
Adds an object to the end of the sequence.
|
<TInpIter extends IInpIter<T,TInpIter>> |
Add(TInpIter first,
TInpIter last)
Appends the specified elements to the back of the sequence.
|
void |
Assign(long n,
T item)
Erases all the elements and replaces them with
n copies of item.
|
void |
Assign(T item)
Erases all the elements and replaces them with
the specified value.
|
<TInpIter extends IInpIter<T,TInpIter>> |
Assign(TInpIter first,
TInpIter last)
Erases a sequence and copies the specified elements
to the empty sequence.
|
T |
Back()
Gets the last element of the sequence.
|
FVector64.Iterator |
Begin()
Returns a random-access iterator to the first element
in the container.
|
void |
Clear()
Erases all the elements of the sequence.
|
boolean |
Contains(IPredicate<T> pred)
Determines whether an element is in the sequence.
|
boolean |
Contains(T item)
Determines whether an element is in the sequence.
|
void |
CopyTo(T[] array,
int arrayIndex)
Copies the sequence to a compatible one-dimensional array,
starting at the specified index of the target array.
|
boolean |
Empty()
Tests if the sequence is empty (the size of
the sequence is zero).
|
FVector64.Iterator |
End()
Returns a random-access iterator to the position that is
one past the final element in the container.
|
boolean |
Equals(FVector64<T> x)
Tests whether this instance is equal to a specified
FVector64 object.
|
boolean |
equals(java.lang.Object obj)
Tests whether this instance is equal to a specified object.
|
FVector64.Iterator |
Erase(FVector64.Iterator pos)
Removes an element in a sequence from a specified
position.
|
FVector64.Iterator |
Erase(FVector64.Iterator first,
FVector64.Iterator last)
Removes a range of elements in a sequence from specified
positions.
|
FVector64.UIterator |
Erase(FVector64.UIterator pos)
Removes an element in a vector from a specified
position.
|
FVector64.UIterator |
Erase(FVector64.UIterator first,
FVector64.UIterator last)
Removes a range of elements in a sequence from specified
positions.
|
long |
Erase(long first,
long last)
Removes a range of elements in a sequence from specified
positions.
|
void |
EraseBegin(FVector64.Iterator pos)
Removes the elements in a sequence from the beginning of the container
to a specified position.
|
void |
EraseBegin(FVector64.UIterator pos)
Removes the elements in a sequence from the beginning of the container
to a specified position.
|
void |
EraseEnd(FVector64.Iterator pos)
Removes the elements in a sequence from a specified
position to the end of the container.
|
void |
EraseEnd(FVector64.UIterator pos)
Removes the elements in a sequence from a specified
position to the end of the container.
|
T |
Front()
Gets the first element of the sequence.
|
int |
hashCode()
Returns the hash code for this instance.
|
long |
IndexOf(IPredicate<T> pred)
Searches for the specified object and returns the zero-based index
of the first occurrence within the entire sequence.
|
long |
IndexOf(T item)
Searches for the specified object and returns the zero-based index
of the first occurrence within the entire sequence.
|
void |
Insert(FVector64.Iterator pos,
long n,
T item)
Inserts a number of elements into the sequence before
the element at a specified position.
|
FVector64.Iterator |
Insert(FVector64.Iterator pos,
T item)
Inserts an element into the sequence before the element
at a specified position.
|
<TInpIter extends IInpIter<T,TInpIter>> |
Insert(FVector64.Iterator pos,
TInpIter first,
TInpIter last)
Inserts a range of elements into the sequence before
the element at a specified position..
|
void |
Insert(FVector64.UIterator pos,
long n,
T item)
Inserts a number of elements into the sequence before
the element at a specified position.
|
FVector64.UIterator |
Insert(FVector64.UIterator pos,
T item)
Inserts an element into the vector at a specified
position.
|
<TInpIter extends IInpIter<T,TInpIter>> |
Insert(FVector64.UIterator pos,
TInpIter first,
TInpIter last)
Inserts a range of elements into the sequence before
the element at a specified position..
|
void |
Insert(long index,
T item)
Inserts an element into the sequence at the specified
index.
|
T |
Item(long index)
Gets a sequence element at a specified position.
|
long |
MaxSize()
Returns the maximum possible length of the sequence.
|
void |
PAdd(long n,
T item)
Parallel Add: Appends to the back of the sequence n copies of
the specified value.
|
<TInpIter extends IInpIter<T,TInpIter>> |
PAdd(TInpIter first,
TInpIter last)
Parallel Add: Appends the specified elements to the back of the sequence.
|
void |
PAssign(long n,
T item)
Parallel Assign: Erases all the elements and replaces them with
n copies of item.
|
void |
PAssign(T item)
Parallel Assign: Erases all the elements and replaces them with
the specified value.
|
<TInpIter extends IInpIter<T,TInpIter>> |
PAssign(TInpIter first,
TInpIter last)
Parallel Assign: Erases a sequence and copies the specified elements
to the empty sequence.
|
boolean |
PContains(IPredicate<T> pred)
Parallel Contains: Determines whether an element is in the sequence.
|
boolean |
PContains(T item)
Parallel Contains: Determines whether an element is in the sequence.
|
void |
PCopyTo(T[] array,
int arrayIndex)
Parallel CopyTo: Copies the sequence to a compatible one-dimensional array,
starting at the specified index of the target array.
|
boolean |
PEquals(FVector64<T> x)
Parallel Equals: Tests whether this instance is equal to a specified
FVector64 object.
|
FVector64.Iterator |
PErase(FVector64.Iterator pos)
Parallel Erase: Removes an element in a sequence from a specified
position.
|
FVector64.UIterator |
PErase(FVector64.UIterator pos)
Parallel Erase: Removes an element in a vector from a specified
position.
|
long |
PIndexOf(IPredicate<T> pred)
Parallel IndexOf: Searches for the specified object and returns the zero-based index
of the first occurrence within the entire sequence.
|
long |
PIndexOf(T item)
Parallel IndexOf: Searches for the specified object and returns the zero-based index
of the first occurrence within the entire sequence.
|
FVector64.Iterator |
PInsert(FVector64.Iterator pos,
T item)
Parallel Insert: Inserts an element into the sequence before the element
at a specified position.
|
FVector64.UIterator |
PInsert(FVector64.UIterator pos,
T item)
Parallel Insert: Inserts an element into the vector at a specified
position.
|
void |
PInsert(long index,
T item)
Parallel Insert: Inserts an element into the sequence at the specified
index.
|
void |
PopBack()
Deletes the element at the end of the sequence.
|
void |
PopFront()
Deletes the element at the beginning of the sequence.
|
boolean |
PRemove(IPredicate<T> pred)
Parallel Remove: Removes the first occurrence of a specific object from
the sequence.
|
boolean |
PRemove(T item)
Parallel Remove: Removes the first occurrence of a specific object from
the sequence.
|
void |
PRemoveAt(long index)
Parallel RemoveAt: Removes the element at the specified index of the sequence.
|
void |
PushBack(T item)
Adds an element to the end of the sequence.
|
void |
PushFront(T item)
Adds an element to the beginning of the sequence.
|
boolean |
Remove(IPredicate<T> pred)
Removes the first occurrence of a specific object from
the sequence.
|
boolean |
Remove(T item)
Removes the first occurrence of a specific object from
the sequence.
|
void |
RemoveAt(long index)
Removes the element at the specified index of the sequence.
|
void |
Resize(long newSize)
Specifies a new size for a sequence.
|
void |
Resize(long newSize,
T item)
Specifies a new size for a sequence.
|
FVector64.ReverseIterator |
ReverseBegin()
Returns a random-access reverse iterator to the first
element in the reversed container.
|
FVector64.ReverseIterator |
ReverseEnd()
Returns a random-access reverse iterator to the position
that is one past the final element in the reversed container.
|
void |
SetBack(T value)
Sets the last element of the sequence.
|
void |
SetFront(T value)
Sets the first element of the sequence.
|
void |
SetItem(long index,
T value)
Sets a sequence element at a specified position.
|
long |
Size()
Returns the number of elements in the sequence.
|
void |
Swap(FVector64<T> x)
Exchanges the elements of two vectors.
|
void |
SwapRef(FVector64<T> x)
Swaps the member references of two sequences.
|
void |
ToStream(FVector64.Iterator first,
FVector64.Iterator last,
java.io.PrintStream sw)
Writes the elements of the current container from the
specified range to the specified stream.
|
void |
ToStream(java.io.PrintStream sw)
Writes the elements of the current container to the
specified stream.
|
java.lang.String |
toString()
Returns a string that represents the content of the current container.
|
java.lang.String |
ToString(FVector64.Iterator first,
FVector64.Iterator last)
Returns a string that represents the elements of the
current container from the specified range.
|
java.lang.Class<T> |
Type()
Returns the type of the elements in the container.
|
T |
UBack()
Gets the last element of the sequence.
|
FVector64.UIterator |
UBegin()
Returns a random-access iterator to the first element
in the container.
|
FVector64.UIterator |
UEnd()
Returns a random-access iterator to the position that is
one past the final element in the container.
|
T |
UFront()
Gets the first element of the sequence.
|
FVector64.UReverseIterator |
UReverseBegin()
Returns a random-access unchecked reverse iterator to the first
element in the reversed container.
|
FVector64.UReverseIterator |
UReverseEnd()
Returns a random-access unchecked reverse iterator to the position
that is one past the final element in the reversed container.
|
public java.lang.Class<T> Type()
Type in interface IContainer64<T>public void Assign(T item)
item - The value of the element being inserted into
the sequence.public void PAssign(T item)
item - The value of the element being inserted into
the sequence.public void Assign(long n,
T item)
n - The number of copies of an element being
inserted into the sequence.item - The value of the element being inserted into
the sequence.java.lang.RuntimeException - When the
number of copies of an element being inserted into the sequence is
greater than the maximum size of the sequence.public void PAssign(long n,
T item)
n - The number of copies of an element being
inserted into the sequence.item - The value of the element being inserted into
the sequence.java.lang.RuntimeException - When the
number of copies of an element being inserted into the sequence is
greater than the maximum size of the sequence.public <TInpIter extends IInpIter<T,TInpIter>> void Assign(TInpIter first, TInpIter last)
TInpIter - The type of iterators in the specified range.first - Position of the first element in the range
of elements to be copied.last - Position that is one past the final element
in the range of elements to be copied.java.lang.RuntimeException - When the iterator range is invalid and the
number of elements being inserted into the sequence is
greater than the maximum size of the sequence.public <TInpIter extends IInpIter<T,TInpIter>> void PAssign(TInpIter first, TInpIter last)
TInpIter - The type of iterators in the specified range.first - Position of the first element in the range
of elements to be copied.last - Position that is one past the final element
in the range of elements to be copied.java.lang.RuntimeException - When the iterator range is invalid and the
number of elements being inserted into the sequence is
greater than the maximum size of the sequence.public void Add(long n,
T item)
n - The number of copies of an element being
appended to the sequence.item - The value of the element being appended to
the sequence.java.lang.RuntimeException - When the
number of copies of an element being appended to the sequence
exceeds the maximum size of the sequence.public void PAdd(long n,
T item)
n - The number of copies of an element being
appended to the sequence.item - The value of the element being appended to
the sequence.java.lang.RuntimeException - When the
number of copies of an element being appended to the sequence
exceeds the maximum size of the sequence.public <TInpIter extends IInpIter<T,TInpIter>> void Add(TInpIter first, TInpIter last)
TInpIter - The type of iterators in the specified range.
of elements to be copied.first - Position of the first element in the rangelast - Position that is one past the final element
in the range of elements to be copied.java.lang.RuntimeException - When the iterator range is invalid and the
number of elements being appended to the sequence exceeds the maximum
size of the sequence.public <TInpIter extends IInpIter<T,TInpIter>> void PAdd(TInpIter first, TInpIter last)
TInpIter - The type of iterators in the specified range.
of elements to be copied.first - Position of the first element in the rangelast - Position that is one past the final element
in the range of elements to be copied.java.lang.RuntimeException - When the iterator range is invalid and the
number of elements being appended to the sequence exceeds the maximum
size of the sequence.public long Size()
Size in interface IContainer64<T>public long MaxSize()
MaxSize in interface IContainer64<T>public boolean Empty()
public T Item(long index)
Item in interface IRanSequence64<T,FVector64.Iterator>index - The zero-based index of the element to get.java.lang.RuntimeException - When the
specified index is of [0, Size - 1] range.public void SetItem(long index,
T value)
SetItem in interface IRanSequence64<T,FVector64.Iterator>index - The zero-based index of the element to set.value - The specified value to be set.java.lang.RuntimeException - When the
specified index is of [0, Size - 1] range.public boolean Contains(T item)
item - The object to locate in the sequence.public boolean PContains(T item)
item - The object to locate in the sequence.public boolean Contains(IPredicate<T> pred)
pred - A user-defined predicate function that defines
the condition to be satisfied by the element being searched for.public boolean PContains(IPredicate<T> pred)
pred - A user-defined predicate function that defines
the condition to be satisfied by the element being searched for.public long IndexOf(T item)
item - The object to locate in the sequence.public long PIndexOf(T item)
item - The object to locate in the sequence.public long IndexOf(IPredicate<T> pred)
pred - A user-defined predicate function that defines
the condition to be satisfied by the element being searched for.public long PIndexOf(IPredicate<T> pred)
pred - A user-defined predicate function that defines
the condition to be satisfied by the element being searched for.public void Add(T item)
item - The object to be added to the end of the sequence.public void Insert(long index,
T item)
index - The position in the sequence where the element
is inserted.item - The object to insert.
Remarks: This method is an O(n) operation, where n is Count.
java.lang.RuntimeException - When the
specified index is invalid or the container's size is equal to
the maximum size of the sequence.public void PInsert(long index,
T item)
index - The position in the sequence where the element
is inserted.item - The object to insert.
Remarks: This method is an O(n) operation, where n is Count.
java.lang.RuntimeException - When the
specified index is invalid or the container's size is equal to
the maximum size of the sequence.public boolean Remove(T item)
item - The object to remove from the sequence.public boolean PRemove(T item)
item - The object to remove from the sequence.public boolean Remove(IPredicate<T> pred)
pred - A user-defined predicate function that defines
the condition to be satisfied by the element being removed.public boolean PRemove(IPredicate<T> pred)
pred - A user-defined predicate function that defines
the condition to be satisfied by the element being removed.public void RemoveAt(long index)
index - The zero-based index of the element to remove.java.lang.RuntimeException - When
the index is outside of the [0, Size - 1] range.
Remarks: This method is an O(n) operation, where n is (Count - index).
public void PRemoveAt(long index)
index - The zero-based index of the element to remove.java.lang.RuntimeException - When
the index is outside of the [0, Size - 1] range.
Remarks: This method is an O(n) operation, where n is (Count - index).
public void Clear()
Clear in interface IContainer64<T>public void CopyTo(T[] array, int arrayIndex)
array - The one-dimensional Array that is the
destination of the elements copied from sequence.
The Array must have zero-based indexing.arrayIndex - The zero-based index in array at
which copying begins.public void PCopyTo(T[] array, int arrayIndex)
array - The one-dimensional Array that is the
destination of the elements copied from sequence.
The Array must have zero-based indexing.arrayIndex - The zero-based index in array at
which copying begins.public FVector64.UIterator UBegin()
public FVector64.UIterator UEnd()
public FVector64.Iterator Begin()
Begin in interface IFwdContainer64<T,FVector64.Iterator>public FVector64.Iterator End()
End in interface IFwdContainer64<T,FVector64.Iterator>public FVector64.UReverseIterator UReverseBegin()
public FVector64.UReverseIterator UReverseEnd()
public FVector64.ReverseIterator ReverseBegin()
public FVector64.ReverseIterator ReverseEnd()
public T Back()
Back in interface IBackSequence<T>java.lang.RuntimeException - When the container is empty.public void SetBack(T value)
SetBack in interface IBackSequence<T>value - The value to be set at the back of the sequence.java.lang.RuntimeException - When the container is empty.public T Front()
Remarks: The container must contain at least one element.
Front in interface IFrontSequence<T>java.lang.RuntimeException - When the container is empty.public void SetFront(T value)
SetFront in interface IFrontSequence<T>value - The value to be set at the front of the sequence.
Remarks: The container must contain at least one element.
java.lang.RuntimeException - When the container is empty.public T UBack()
public T UFront()
public void PushBack(T item)
PushBack in interface IBackSequence<T>item - The element added to the end of the sequence.java.lang.RuntimeException - When the container's
size is equal to the maximum size.public void PopBack()
PopBack in interface IBackSequence<T>java.lang.RuntimeException - When the
container is empty.public void PushFront(T item)
PushFront in interface IFrontSequence<T>item - The element added to the beginning of
the sequence.java.lang.RuntimeException - When the
container starts at the position zero in the sequence.public void PopFront()
PopFront in interface IFrontSequence<T>java.lang.RuntimeException - When the
container is empty.public FVector64.UIterator Insert(FVector64.UIterator pos, T item)
pos - The position in the vector where the element
is inserted.item - The value of the element being inserted
into the vector.Remarks: The insertion operation can be expensive.
java.lang.RuntimeException - When the
specified iterator is invalid or the container's size is equal to
the maximum size of the storage.public FVector64.UIterator PInsert(FVector64.UIterator pos, T item)
pos - The position in the vector where the element
is inserted.item - The value of the element being inserted
into the vector.Remarks: The insertion operation can be expensive.
java.lang.RuntimeException - When the
specified iterator is invalid or the container's size is equal to
the maximum size of the storage.public FVector64.Iterator Insert(FVector64.Iterator pos, T item)
Insert in interface IInsertSequence<T,FVector64.Iterator>pos - The position in the sequence where the element
is inserted.item - The value of the element being inserted
into the sequence.Remarks: The insertion operation can be expensive.
java.lang.RuntimeException - When the
specified iterator is invalid or the container's size is equal to
the maximum size of the storage.public FVector64.Iterator PInsert(FVector64.Iterator pos, T item)
pos - The position in the sequence where the element
is inserted.item - The value of the element being inserted
into the sequence.Remarks: The insertion operation can be expensive.
java.lang.RuntimeException - When the
specified iterator is invalid or the container's size is equal to
the maximum size of the storage.public void Insert(FVector64.UIterator pos, long n, T item)
pos - The position in the sequence where the elements
are inserted.n - The number of elements being inserted into the sequence.item - The value of the elements being inserted
into the sequence.
Remarks: The insertion operation can be expensive.
java.lang.RuntimeException - When the
specified iterator is invalid or the container's size plus number of
elements to be inserted is equal to the maximum size of the storage.public void Insert(FVector64.Iterator pos, long n, T item)
pos - The position in the sequence where the elements
are inserted.n - The number of elements being inserted into the sequence.item - The value of the elements being inserted
into the sequence.
Remarks: The insertion operation can be expensive.
java.lang.RuntimeException - When the
specified iterator is invalid or the container's size plus number of
elements to be inserted is equal to the maximum size of the storage.public <TInpIter extends IInpIter<T,TInpIter>> void Insert(FVector64.UIterator pos, TInpIter first, TInpIter last)
TInpIter - The type of iterators in the specified range.pos - The position in the sequence where the elements
are inserted.first - An input iterator addressing the position of the
first element in the range to be inserted.last - An input iterator addressing the position that is
one past the final element in the range to be inserted.
Remarks: The insertion operation can be expensive.
java.lang.RuntimeException - When the
specified iterator is invalid or the container's size plus number of
elements to be inserted is equal to the maximum size of the storage.public <TInpIter extends IInpIter<T,TInpIter>> void Insert(FVector64.Iterator pos, TInpIter first, TInpIter last)
TInpIter - The type of iterators in the specified range.pos - The position in the sequence where the elements
are inserted.first - An input iterator addressing the position of the
first element in the range to be inserted.last - An input iterator addressing the position that is
one past the final element in the range to be inserted.
Remarks: The insertion operation can be expensive.
java.lang.RuntimeException - When the
specified iterator is invalid or the container's size plus number of
elements to be inserted is equal to the maximum size of the storage.public FVector64.UIterator Erase(FVector64.UIterator pos)
pos - Position of the element to be removed from the
vector.Remarks: The erase operation can be expensive.
java.lang.RuntimeException - When the argument iterator
is not dereferenceable.public FVector64.UIterator PErase(FVector64.UIterator pos)
pos - Position of the element to be removed from the
vector.Remarks: The erase operation can be expensive.
java.lang.RuntimeException - When the argument iterator
is not dereferenceable.public FVector64.Iterator Erase(FVector64.Iterator pos)
pos - Position of the element to be removed from the
sequence.Remarks: The erase operation can be expensive.
java.lang.RuntimeException - When the argument iterator
is not dereferenceable.public FVector64.Iterator PErase(FVector64.Iterator pos)
pos - Position of the element to be removed from the
sequence.Remarks: The erase operation can be expensive.
java.lang.RuntimeException - When the argument iterator
is not dereferenceable.public long Erase(long first,
long last)
first - Position of the first element removed from
the sequence.last - Position just beyond the last element removed
from the sequence.Remarks: The erase operation can be expensive.
public FVector64.UIterator Erase(FVector64.UIterator first, FVector64.UIterator last)
first - Position of the first element removed from
the sequence.last - Position just beyond the last element removed
from the sequence.Remarks: The erase operation can be expensive.
public FVector64.Iterator Erase(FVector64.Iterator first, FVector64.Iterator last)
first - Position of the first element removed from
the sequence.last - Position just beyond the last element removed
from the sequence.Remarks: The erase operation can be expensive.
public void EraseBegin(FVector64.UIterator pos)
pos - Position of the first element in the sequence after removing
the specified elements.
Remarks: The EraseBegin is a constant time operation.
java.lang.RuntimeException - When the
specified iterator is invalid.public void EraseBegin(FVector64.Iterator pos)
pos - Position of the first element in the sequence after removing
the specified elements.
Remarks: The EraseBegin is a constant time operation.
java.lang.RuntimeException - When the
specified iterator is invalid.public void EraseEnd(FVector64.UIterator pos)
pos - Position of the first element removed from
the sequence.
Remarks: The EraseEnd is a constant time operation.
java.lang.RuntimeException - When the
specified iterator is invalid.public void EraseEnd(FVector64.Iterator pos)
pos - Position of the first element removed from
the sequence.
Remarks: The EraseEnd is a constant time operation.
java.lang.RuntimeException - When the
specified iterator is invalid.public void Resize(long newSize)
newSize - The new size of the sequence.
Remarks: If the new size is larger than the original size, the new objects are assigned the default value.
java.lang.RuntimeException - When the
specified size is greater than maximum size of the storage.public void Resize(long newSize,
T item)
newSize - The new size of the sequence.item - The value of new elements added to the
FVector64, if the new size is larger than the original size.
Remarks: If the new size is larger than the original size, the new objects are assigned the default value.
java.lang.RuntimeException - When the
specified size is greater than maximum size of the storage.public void Swap(FVector64<T> x)
x - A sequence whose elements are to be exchanged.
Remarks: The complexity is linear with the size of the containers.
public void SwapRef(FVector64<T> x)
x - A sequence whose elements are to be exchanged.public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectobj - An object to compare with this instance.public int hashCode()
hashCode in class java.lang.Objectpublic boolean Equals(FVector64<T> x)
x - An object to compare with this instance.public boolean PEquals(FVector64<T> x)
x - An object to compare with this instance.public java.lang.String toString()
toString in class java.lang.ObjectRemarks: If the container has a great number of elements this function may throw an exception. It is recommended to use the overloaded function to limit the number of elements that are dumped to a string.
public java.lang.String ToString(FVector64.Iterator first, FVector64.Iterator last)
first - Position of the first element in the range
of elements.last - Position that is one past the final element
in the range of elements.
Remarks: If the specified range has a great number of elements this function may throw an exception.
public void ToStream(java.io.PrintStream sw)
sw - A StreamWriter object to write to.public void ToStream(FVector64.Iterator first, FVector64.Iterator last, java.io.PrintStream sw)
first - Position of the first element in the range
of elements.last - Position that is one past the final element
in the range of elements.sw - A StreamWriter object to write to.Copyright© 2012 Progeneric Systems, Inc. All Rights Reserved.