IsConstantExpression
Performs a compile-time check on whether the provided argument is known to be constant by Burst.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Method
- Namespace: Unity.Burst.CompilerServices
- Assembly: UnityEngine.BurstModule
IsConstantExpression<T>(T)
Performs a compile-time check on whether the provided argument is known to be constant by Burst.
public static bool IsConstantExpression<T>(T t) where T : unmanaged
Parameters
Returns
Type | Description |
|---|---|
| bool | True if Burst knows at compile-time that it is a constant, false otherwise. |
IsConstantExpression(void*)
Performs a compile-time check on whether the provided argument is known to be constant by Burst.
public static bool IsConstantExpression(void* t)
Parameters
The value to check whether it is constant.
Returns
Type | Description |
|---|---|
| bool | True if Burst knows at compile-time that it is a constant, false otherwise. |