IMutableArray Interface |
Namespace: Couchbase.Lite
public interface IMutableArray : IArray, IArrayFragment, IReadOnlyCollection<Object>, IEnumerable<Object>, IEnumerable, IMutableArrayFragment
The IMutableArray type exposes the following members.
Name | Description | |
---|---|---|
![]() | Count | Gets the number of elements in the collection. (Inherited from IReadOnlyCollection<Object>.) |
![]() | Item |
Gets the value of the given index, or lack thereof,
wrapped inside of a Fragment |
Name | Description | |
---|---|---|
![]() | Add(Boolean) |
Adds an entry to this collection
|
![]() | Add(DateTimeOffset) |
Adds an entry to this collection
|
![]() | Add(Double) |
Adds an entry to this collection
|
![]() | Add(Int32) |
Adds an entry to this collection
|
![]() | Add(Int64) |
Adds an entry to this collection
|
![]() | Add(Object) |
Adds an entry to this collection
|
![]() | Add(Single) |
Adds an entry to this collection
|
![]() | Add(String) |
Adds an entry to this collection
|
![]() | Add(Blob) |
Adds an entry to this collection
|
![]() | Add(DictionaryObject) |
Adds an entry to this collection
|
![]() | Add(MutableArray) |
Adds an entry to this collection
|
![]() | GetArray |
Gets the value at the given index as an array
|
![]() | GetBlob |
Gets the value at the given index as a Blob (Inherited from IArray.) |
![]() | GetBoolean |
Gets the value at the given index as a Boolean (Inherited from IArray.) |
![]() | GetDate |
Gets the value at the given index as a DateTimeOffset (Inherited from IArray.) |
![]() | GetDictionary |
Gets the value at the given index as an IDictionaryObject |
![]() | GetDouble |
Gets the value at the given index as a Double (Inherited from IArray.) |
![]() | GetEnumerator | Returns an enumerator that iterates through the collection. (Inherited from IEnumerable<Object>.) |
![]() | GetFloat |
Gets the value at the given index as a Single (Inherited from IArray.) |
![]() | GetInt |
Gets the value at the given index as an Int32 (Inherited from IArray.) |
![]() | GetLong |
Gets the value at the given index as an Int64 (Inherited from IArray.) |
![]() | GetObject |
Gets the value at the given index as an untyped object
(Inherited from IArray.) |
![]() | GetString |
Gets the value at the given index as a String (Inherited from IArray.) |
![]() | Insert(Int32, Blob) |
Inserts a given value at the given index
|
![]() | Insert(Int32, DictionaryObject) |
Inserts a given value at the given index
|
![]() | Insert(Int32, MutableArray) |
Inserts a given value at the given index
|
![]() | Insert(Int32, Boolean) |
Inserts a given value at the given index
|
![]() | Insert(Int32, DateTimeOffset) |
Inserts a given value at the given index
|
![]() | Insert(Int32, Double) |
Inserts a given value at the given index
|
![]() | Insert(Int32, Int32) |
Inserts a given value at the given index
|
![]() | Insert(Int32, Int64) |
Inserts a given value at the given index
|
![]() | Insert(Int32, Object) |
Inserts a given value at the given index
|
![]() | Insert(Int32, Single) |
Inserts a given value at the given index
|
![]() | Insert(Int32, String) |
Inserts a given value at the given index
|
![]() | RemoveAt |
Removes the item at the given index
|
![]() | Set(IList) |
Replaces the contents of this collection with the contents of the given one
|
![]() | Set(Int32, Blob) |
Overwrites the value at the given index with the given value
|
![]() | Set(Int32, DictionaryObject) |
Overwrites the value at the given index with the given value
|
![]() | Set(Int32, MutableArray) |
Overwrites the value at the given index with the given value
|
![]() | Set(Int32, Boolean) |
Overwrites the value at the given index with the given value
|
![]() | Set(Int32, DateTimeOffset) |
Overwrites the value at the given index with the given value
|
![]() | Set(Int32, Double) |
Overwrites the value at the given index with the given value
|
![]() | Set(Int32, Int32) |
Overwrites the value at the given index with the given value
|
![]() | Set(Int32, Int64) |
Overwrites the value at the given index with the given value
|
![]() | Set(Int32, Object) |
Overwrites the value at the given index with the given value
|
![]() | Set(Int32, Single) |
Overwrites the value at the given index with the given value
|
![]() | Set(Int32, String) |
Overwrites the value at the given index with the given value
|
![]() | ToList |
Converts this object to a standard .NET collection
(Inherited from IArray.) |