# Find

> Find a sequence of N contiguous 0 bits in a bit array. To achieve higher performance, it is not guaranteed that the found index is necessarily the first occurrence of such a sequence.

## Definition

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

## Find(int, int)

Find a sequence of N contiguous 0 bits in a bit array. To achieve higher performance, it is not guaranteed that the found index is necessarily the first occurrence of such a sequence.

```csharp
public int Find(int pos, int numBits)
```

### Parameters

**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): Index at which to start searching.**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): Number of contiguous 0 bits to look for.

### Returns

| Type                                                       | Description                                                                                                                                  |
| ---------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| [int](https://learn.microsoft.com/dotnet/api/system.int32) | The index in this array where the sequence is found. The index will be greater than or equal to `pos`. Returns -1 if no occurrence is found. |

### Remarks

The search does not guarantee the earliest occurrence in the array.

## Find(int, int, int)

Find a sequence of N contiguous 0 bits in a bit array. To achieve higher performance, it is not guaranteed that the found index is necessarily the first occurrence of such a sequence.

```csharp
public int Find(int pos, int count, int numBits)
```

### Parameters

**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): Index at which to start searching.**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): Number of bits to search.**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): Number of contiguous 0 bits to look for.

### Returns

| Type                                                       | Description                                                                                                                                                              |
| ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [int](https://learn.microsoft.com/dotnet/api/system.int32) | The index in this array where the sequence is found. The index will be greater than or equal to `pos` but less than `pos + count`. Returns -1 if no occurrence is found. |

### Remarks

The search does not guarantee the earliest occurrence in the array.
