mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
10 lines
228 B
C#
10 lines
228 B
C#
using OneOf.Types;
|
|
using OneOf;
|
|
|
|
namespace NadekoBot.Common;
|
|
|
|
public static class OneOfExtensions
|
|
{
|
|
public static bool TryGetValue<T>(this OneOf<T, None> oneOf, out T value)
|
|
=> oneOf.TryPickT0(out value, out _);
|
|
} |