Contents

pointer(at:)

Returns the pointer at a given index.

Declaration

func pointer(at index: Int) -> UnsafeMutableRawPointer?

Parameters

  • index:

    The index of an element in the receiver. This value must be less than the Count of the receiver.

Return Value

The pointer at index.

Discussion

The returned value may be NULL.

See Also

Managing the Collection