You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

llama.native.llamapos.md 1.3 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # LLamaPos
  2. Namespace: LLama.Native
  3. Indicates position in a sequence
  4. ```csharp
  5. public struct LLamaPos
  6. ```
  7. 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>
  8. Implements [IEquatable&lt;LLamaPos&gt;](https://docs.microsoft.com/en-us/dotnet/api/system.iequatable-1)
  9. ## Fields
  10. ### **Value**
  11. The raw value
  12. ```csharp
  13. public int Value;
  14. ```
  15. ## Methods
  16. ### **ToString()**
  17. ```csharp
  18. string ToString()
  19. ```
  20. #### Returns
  21. [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
  22. ### **GetHashCode()**
  23. ```csharp
  24. int GetHashCode()
  25. ```
  26. #### Returns
  27. [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)<br>
  28. ### **Equals(Object)**
  29. ```csharp
  30. bool Equals(object obj)
  31. ```
  32. #### Parameters
  33. `obj` [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object)<br>
  34. #### Returns
  35. [Boolean](https://docs.microsoft.com/en-us/dotnet/api/system.boolean)<br>
  36. ### **Equals(LLamaPos)**
  37. ```csharp
  38. bool Equals(LLamaPos other)
  39. ```
  40. #### Parameters
  41. `other` [LLamaPos](./llama.native.llamapos.md)<br>
  42. #### Returns
  43. [Boolean](https://docs.microsoft.com/en-us/dotnet/api/system.boolean)<br>