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.llamacache.md 953 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # LLamaCache
  2. Namespace: LLama
  3. ```csharp
  4. public class LLamaCache
  5. ```
  6. Inheritance [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [LLamaCache](./llama.llamacache.md)
  7. ## Properties
  8. ### **CacheSize**
  9. ```csharp
  10. public int CacheSize { get; }
  11. ```
  12. #### Property Value
  13. [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)<br>
  14. ### **Item**
  15. ```csharp
  16. public LLamaState Item { get; set; }
  17. ```
  18. #### Property Value
  19. [LLamaState](./llama.llamastate.md)<br>
  20. ## Constructors
  21. ### **LLamaCache(Int32)**
  22. ```csharp
  23. public LLamaCache(int capacity)
  24. ```
  25. #### Parameters
  26. `capacity` [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)<br>
  27. ## Methods
  28. ### **Contains(Int32[])**
  29. ```csharp
  30. public bool Contains(Int32[] key)
  31. ```
  32. #### Parameters
  33. `key` [Int32[]](https://docs.microsoft.com/en-us/dotnet/api/system.int32)<br>
  34. #### Returns
  35. [Boolean](https://docs.microsoft.com/en-us/dotnet/api/system.boolean)<br>