Skip to content

Latest commit

 

History

History
42 lines (39 loc) · 1.08 KB

CONTRIBUTING.md

File metadata and controls

42 lines (39 loc) · 1.08 KB

Contributing

We're moving functions over to C++! We've done the following so far:

  • pystr_capitalize
  • pystr_center
  • pystr_count
  • pystr_endswith
  • pystr_find
  • pystr_format
  • pystr_index
  • pystr_isalnum
  • pystr_isalpha
  • pystr_islower
  • pystr_isnumeric
  • pystr_isspace
  • pystr_istitle
  • pystr_isupper
  • pystr_join
  • pystr_ljust
  • pystr_lower
  • pystr_lstrip
  • pystr_makestrans
  • pystr_partition
  • pystr_replace
  • pystr_rfind
  • pystr_rindex
  • pystr_rjust
  • pystr_rpartition
  • pystr_rsplit
  • pystr_rstrip
  • pystr_split
  • pystr_splitlines
  • pystr_startswith
  • pystr_strip
  • pystr_swapcase
  • pystr_title
  • pystr_translate
  • pystr_upper
  • pystr_zfill

To contribute, pick one of the functions that hasn't been ported to C++ yet. Look at the already-completed functions as examples on how to export a function from C++ to R. Run make test to make sure your changes pass all the tests.