|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- # LLamaPos
-
- Namespace: LLama.Native
-
- Indicates position in a sequence
-
- ```csharp
- public struct LLamaPos
- ```
-
- Inheritance [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [ValueType](https://docs.microsoft.com/en-us/dotnet/api/system.valuetype) → [LLamaPos](./llama.native.llamapos.md)<br>
- Implements [IEquatable<LLamaPos>](https://docs.microsoft.com/en-us/dotnet/api/system.iequatable-1)
-
- ## Fields
-
- ### **Value**
-
- The raw value
-
- ```csharp
- public int Value;
- ```
-
- ## Methods
-
- ### **ToString()**
-
- ```csharp
- string ToString()
- ```
-
- #### Returns
-
- [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
-
- ### **GetHashCode()**
-
- ```csharp
- int GetHashCode()
- ```
-
- #### Returns
-
- [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)<br>
-
- ### **Equals(Object)**
-
- ```csharp
- bool Equals(object obj)
- ```
-
- #### Parameters
-
- `obj` [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object)<br>
-
- #### Returns
-
- [Boolean](https://docs.microsoft.com/en-us/dotnet/api/system.boolean)<br>
-
- ### **Equals(LLamaPos)**
-
- ```csharp
- bool Equals(LLamaPos other)
- ```
-
- #### Parameters
-
- `other` [LLamaPos](./llama.native.llamapos.md)<br>
-
- #### Returns
-
- [Boolean](https://docs.microsoft.com/en-us/dotnet/api/system.boolean)<br>
|