add equals interface for Range class.
Summary:
Add `equals` interface to StringPiece (Range class). To support following case insensitive compare case:
```
folly::StringPiece a("hello");
if (a.equals("HELLO", folly::AsciiCaseInsensitive())) {
// Do something.
}
```
Reviewed By: ot
Differential Revision: D5150495
fbshipit-source-id: 26816820f93959678f550768396f55293b5588cb
Showing
Please register or sign in to comment