# Hint

> Compile-time hint intrinsics.

## Definition

* **Type:** Class
* **Namespace:** [Unity.Burst.CompilerServices](/engine/6000.7/script-reference/unity/burst/compilerservices.md)
* **Assembly:** UnityEngine.BurstModule

```csharp
public static class Hint
```

## Static Methods

| Method                                                                                    | Description                                                         |
| ----------------------------------------------------------------------------------------- | ------------------------------------------------------------------- |
| [Assume](/engine/6000.7/script-reference/unity/burst/compilerservices/hint/assume.md)     | Hints to the compiler that the condition can be assumed to be true. |
| [Likely](/engine/6000.7/script-reference/unity/burst/compilerservices/hint/likely.md)     | Hints to the compiler that the condition is likely to be true.      |
| [Unlikely](/engine/6000.7/script-reference/unity/burst/compilerservices/hint/unlikely.md) | Hints to the compiler that the condition is unlikely to be true.    |
