DateMotionCollectionT, TDerivativeCreateImmutableView Method |
Creates a view of this instance that is guaranteed not to change.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public ImmutableDateMotionCollection<T, TDerivative> CreateImmutableView()
Public Function CreateImmutableView As ImmutableDateMotionCollection(Of T, TDerivative)
public:
ImmutableDateMotionCollection<T, TDerivative>^ CreateImmutableView()
member CreateImmutableView : unit -> ImmutableDateMotionCollection<'T, 'TDerivative>
Return Value
Type:
ImmutableDateMotionCollectionT,
TDerivativeA view of this instance that is guaranteed not to change.
Remarks
After calling this method to create an immutable view of this collection:
- Elements added to the end of this collection will be ignored by the immutable view.
- Changes to existing items in this collection will trigger a copy of this collection such that the immutable view will be unaffected.
See Also