2013-07-03 18:13:38 +02:00
|
|
|
This module provides one function, equals (not exported by default).
|
|
|
|
|
|
|
|
You should pass this function two strings of the same length. It will
|
|
|
|
return true if they are string-wise identical and false otherwise, just
|
|
|
|
like eq. However, comparing any two differing strings will take a fixed
|
|
|
|
amount of time, unlike eq.
|
|
|
|
|
|
|
|
NOTE: If the lengths of the strings are different, equals will return
|
2018-02-18 04:35:37 +01:00
|
|
|
false right away.
|