NativeText.ReadOnly
A read-only alias for the value of a NativeText. Does not have its own allocated storage.
Read time 2 minutesLast updated 6 days ago
Definition
- Type: Struct
- Namespace: Unity.Collections
- Assembly: UnityEngine.ManagedKernelModule
- Implements: INativeList<byte>, IIndexable<byte>, IUTF8Bytes, IComparable<string>, IEquatable<string>, IComparable<NativeText>, IEquatable<NativeText>, IComparable<FixedString32Bytes>, IEquatable<FixedString32Bytes>, IComparable<FixedString64Bytes>, IEquatable<FixedString64Bytes>, IComparable<FixedString128Bytes>, IEquatable<FixedString128Bytes>, IComparable<FixedString512Bytes>, IEquatable<FixedString512Bytes>, IComparable<FixedString4096Bytes>, IEquatable<FixedString4096Bytes>
public struct NativeText.ReadOnly : INativeList<byte>, IIndexable<byte>, IUTF8Bytes, IComparable<string>, IEquatable<string>, IComparable<NativeText>, IEquatable<NativeText>, IComparable<FixedString32Bytes>, IEquatable<FixedString32Bytes>, IComparable<FixedString64Bytes>, IEquatable<FixedString64Bytes>, IComparable<FixedString128Bytes>, IEquatable<FixedString128Bytes>, IComparable<FixedString512Bytes>, IEquatable<FixedString512Bytes>, IComparable<FixedString4096Bytes>, IEquatable<FixedString4096Bytes>
Properties
Property | Description |
|---|
| Capacity | The current capacity in bytes of this string. |
| IsEmpty | Whether this string has no characters. |
| this[] | The byte at an index. |
| Length | The current length in bytes of this string. |
| Value | A copy of this string as a managed string. |
Methods
Method | Description |
|---|
| Clear | Sets the length to 0. For a NativeText.Readonly this function does nothing, unless safety checks are enabled (in which case it throws). |
| CompareTo | Returns the lexicographical sort order of this string relative to another. |
| ElementAt | Returns a reference to the byte (not character) at an index. Unsupported by NativeText.ReadOnly. |
| Equals | Returns true if this string and another object are equal. |
| GetEnumerator | Returns an enumerator for iterating over the characters of the NativeText. |
| GetHashCode | Returns a hash code of this string. |
| GetUnsafePtr | Returns a pointer to this string's character buffer. |
| ToString | Returns a managed string copy of this string. |
| TryResize | Attempt to set the length in bytes of this string. For NativeText.ReadOnly this function is a no-op and always returns false. |
Operators
Operator | Description |
|---|
| operator == | Returns true if two strings are equal. |
| operator != | Returns true if two strings are unequal. |