class Object
Constants
- LIBSODIUM_AVAILABLE
- OPUS_AVAILABLE
Public Instance Methods
not!(object)
click to toggle source
Utility function that creates a negated object for {Discordrb::Events.matches_all} @param [Object] object The object to negate @see Discordrb::Events::Negated
@see Discordrb::Events.matches_all
@return [Negated<Object>] the object, negated, as an attribute to pass to matches_all
# File lib/discordrb/events/generic.rb, line 125 def not!(object) Discordrb::Events::Negated.new(object) end