示例#1
0
 public bool Equals(GatewayIntent other)
 => RawValue == (ulong)other;
示例#2
0
 public GatewayIntents(GatewayIntent intents)
     : this((ulong)intents)
 {
 }
示例#3
0
 public bool Has(GatewayIntent intents)
 => Flags.HasFlag(intents);
示例#4
0
 public bool Has(GatewayIntent intent)
 => FlagUtilities.HasFlag(RawValue, (ulong)intent);