protocol
_ArrayBufferType
Inheritance |
CollectionType, MutableCollectionType, SequenceType, _CollectionType, _SequenceType, _Sequence_Type
View Protocol Hierarchy →
|
---|---|
Associated Types |
The type of elements stored in the buffer
A type that provides the sequence's iteration interface and encapsulates its iteration state.
A type that represents a valid position in the collection. Valid indices consist of the position of every element and a "past the end" position that's not valid for use as a subscript.
A type that represents a valid position in the collection. Valid indices consist of the position of every element and a "past the end" position that's not valid for use as a subscript. 3 inherited items hidden. (Show all) |
Import |
|
Initializers
Adopt the storage of x
Declaration
init
(
_
buffer
:
_ContiguousArrayBuffer
<
Element
>
)
Instance Variables
If the elements are stored contiguously, a pointer to the first element. Otherwise, nil.
Declaration
var
baseAddress
:
UnsafeMutablePointer
<
Element
>
{
get
}
A value that identifies the storage used by the buffer. Two buffers address the same elements when they have the same identity and count.
Declaration
var
identity
:
UnsafePointer
<
Void
>
{
get
}
An object that keeps the elements stored in this buffer alive
Declaration
var
owner
:
AnyObject
{
get
}
The collection's "past the end" position.
endIndex
is not a valid argument to subscript
, and is always
reachable from startIndex
by zero or more applications of
successor()
.
Declaration
var
endIndex
:
Index
{
get
}
Declared In
_CollectionType
The position of the first element in a non-empty collection.
Identical to endIndex
in an empty collection.
Declaration
var
startIndex
:
Index
{
get
}
Declared In
_CollectionType
2 inherited items hidden. (Show all)
Subscripts
Declaration
subscript
(
position
:
Self
.
Index
) -
>
Self
.
Generator
.
Element
{
get
}
Declared In
CollectionType
, MutableCollectionType
2 inherited items hidden. (Show all)
Instance Methods
Copy the given subRange of this buffer into uninitialized memory starting at target. Return a pointer past-the-end of the just-initialized memory.
Declaration
func
_uninitializedCopy
(
subRange
:
Range
<
Int
>
,
target
:
UnsafeMutablePointer
<
Element
>
) -
>
UnsafeMutablePointer
<
Element
>
Return a generator over the elements of this sequence.
Complexity: O(1)
Declaration
func
generate
() -
>
Generator
Declared In
SequenceType
, _Sequence_Type
Returns true iff this buffer is backed by a uniquely-referenced mutable _ContiguousArrayBuffer.
Note: this function must remain mutating; otherwise the buffer may acquire spurious extra references, which will cause unnecessary reallocation.
Declaration
mutating
func
isMutableAndUniquelyReferenced
() -
>
Bool
Replace the given subRange with the first newCount elements of the given collection.
Requires: this buffer is backed by a uniquely-referenced _ContiguousArrayBuffer
Declaration
mutating
func
replace
<
C
:
CollectionType
where
Self
.
Element
==
Element
>
(#
subRange
:
Range
<
Int
>
,
with
newCount
:
Int
,
elementsOf
newValues
:
C
)
If this buffer is backed by a _ContiguousArrayBuffer
containing the same number of elements as self
, return it.
Otherwise, return nil
.
Declaration
func
requestNativeBuffer
() -
>
_ContiguousArrayBuffer
<
Element
>
?
If this buffer is backed by a uniquely-referenced mutable ContiguousArrayBuffer that can be grown in-place to allow the self buffer store minimumCapacity elements, returns that buffer. Otherwise, returns nil. Note: the result's baseAddress may not match ours, if we are a SliceBuffer.
Note: this function must remain mutating; otherwise the buffer may acquire spurious extra references, which will cause unnecessary reallocation.
Declaration
mutating
func
requestUniqueMutableBackingBuffer
(
minimumCapacity
:
Int
) -
>
_ContiguousArrayBuffer
<
Element
>
?
Call body(p)
, where p
is an UnsafeBufferPointer
over the
underlying contiguous storage. If no such storage exists, it is
created on-demand.
Declaration
func
withUnsafeBufferPointer
<
R
>
(
body
: @
noescape
(
UnsafeBufferPointer
<
Element
>
) -
>
R
) -
>
R
Call body(p)
, where p
is an UnsafeMutableBufferPointer
over the underlying contiguous storage. Requires: such
contiguous storage exists or the buffer is empty
Declaration
mutating
func
withUnsafeMutableBufferPointer
<
R
>
(
body
: @
noescape
(
UnsafeMutableBufferPointer
<
Element
>
) -
>
R
) -
>
R
1 inherited item hidden. (Show all)
The underlying buffer for an ArrayType conforms to _ArrayBufferType. This buffer does not provide value semantics.