Skip to content

simonstl/erlang-simple-string

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Erlang simple string

A wrapper library that attempts to make Erlang's string functions in the string, lists, erlang, and (eventually) re modules seem coherent to beginners.

The initial version is purely a wrapper for traditional list-based strings. Future versions may:

  • rename some functions to make them more familiar to developers coming from other languages
  • fill some gaps for string functionality
  • add support for binary strings across the set

The library is under the (2-clause) Simplified BSD license.

How to generate documentation

  1. Lounch command in project directory: mkdir doc && cp -f overview.edoc doc/overview.edoc.
  2. Start the shell (erl/werl).
  3. Lounch code edoc:files(["sstr.erl"], [{dir, "doc"}]). in the shell.
  4. Open file index.html in the doc subfolder.

How to run tests

  1. Start the shell (erl/werl).
  2. Lounch code c(sstr). c(sstr_tests). eunit:test(sstr). in the shell and analyze the results.

About

A wrapper library that attempts to make Erlang's string and lists modules seem coherent to beginners.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages