Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
martysama0134 authored Aug 24, 2018
1 parent 64969b7 commit b5c0812
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ It includes:
- `msl::string_replace(str, string from, string to)`; replace all occurrences of 'from' to 'to' returning a new string
- `msl::string_replace_in_place(str, char from, char to)`; replace all occurrences of 'from' to 'to' in the input str
- `msl::string_replace_in_place(str, string from, string to)`; replace all occurrences of 'from' to 'to' in the input str (3x faster than string version, 4x faster than copied replace)
- `msl::refill(array, value=0)`; zero-initialize the specific c array
- `msl::refill(container, value=default())`; default-initialize the specific std container

### How to use it
```cpp
Expand Down

0 comments on commit b5c0812

Please sign in to comment.