study/first_study/Library/PackageCache/com.unity.burst@973857688024/Runtime/CompilerServices/Constant.cs
jh04010421 739d49f1a0 Unity | 2026.01.20
수업 실습 파일
2026-01-20 11:01:57 +09:00

24 lines
1.0 KiB
C#

namespace Unity.Burst.CompilerServices
{
/// <summary>
/// Compile-time queries intrinsics.
/// </summary>
public static class Constant
{
/// <summary>
/// Performs a compile-time check on whether the provided argument is known to be constant by Burst.
/// </summary>
/// <typeparam name="T">Type</typeparam>
/// <param name="t">The value to check whether it is constant.</param>
/// <returns>True if Burst knows at compile-time that it is a constant, false otherwise.</returns>
public static bool IsConstantExpression<T>(T t) where T : unmanaged => false;
/// <summary>
/// Performs a compile-time check on whether the provided argument is known to be constant by Burst.
/// </summary>
/// <param name="t">The value to check whether it is constant.</param>
/// <returns>True if Burst knows at compile-time that it is a constant, false otherwise.</returns>
public static unsafe bool IsConstantExpression(void* t) => false;
}
}