1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-07-11 00:17:11 +00:00
arikawa/discord/discord.go

12 lines
434 B
Go
Raw Normal View History

2020-01-15 04:56:50 +00:00
// Package discord provides common structures that the whole repository uses. It
// does not (and should not) contain API-specific structures, or WS-specific
// structures.
package discord
// HasFlag is returns true if has is in the flag. In other words, it checks if
// has is OR'd into flag. This function could be used for different constants
// such as Permission.
func HasFlag(flag, has uint64) bool {
return flag&has == has
}