I came across the following code and couldn't figure out what was going on.
def self.eof_packet?(data)
data[0] == ?\xfe && data.length == 5
end
|
I came across the following code and couldn't figure out what was going on.
|
||||
|
|
|
|
|||
|
|
|
Hexadecimal number FE, which is 254 |
|||||||||||||||
|
|
It's a hexadecimal character literal. You can also use |
||||
|
|