# ReadPackedInt(in StreamCompressionModel)

> Reads a 4-byte signed integer value from the data stream using a StreamCompressionModel. Negative values de-interleaves from positive values before returning, for example (0, -1, 1, -2, 2) -> (-2, -1, 0, 1, 2)

## Definition

* **Type:** Method
* **Namespace:** [Unity.Collections](/engine/6000.7/script-reference/unity/collections.md)
* **Assembly:** UnityEngine.ManagedKernelModule

## ReadPackedInt(StreamCompressionModel)

```csharp
public int ReadPackedInt(in StreamCompressionModel model)
```

### Parameters

**** (\[StreamCompressionModel]\(/engine/6000.7/script-reference/unity/collections/streamcompressionmodel)): [StreamCompressionModel](/engine/6000.7/script-reference/unity/collections/streamcompressionmodel.md) model for reading value in a packed manner.

### Returns

| Type                                                       | Description                                                                                           |
| ---------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
| [int](https://learn.microsoft.com/dotnet/api/system.int32) | A 4-byte signed integer read from the current stream, or 0 if the end of the stream has been reached. |
