Flowdock
eql?(p1) public

Equality—Two regexps are equal if their patterns are identical, they have the same character set code, and their casefold? values are the same.

/abc/  == /abc/x   #=> false
/abc/  == /abc/i   #=> false
/abc/  == /abc/n   #=> false
/abc/u == /abc/n   #=> false
Show source
Register or log in to add new notes.