An open API service indexing awesome lists of open source software.

https://github.com/eddelbuettel/rcppdate

R package providing date C++ library header files
https://github.com/eddelbuettel/rcppdate

Last synced: over 1 year ago
JSON representation

R package providing date C++ library header files

Awesome Lists containing this project

README

          

## RcppDate: date C++ header library for R

[![CI](https://github.com/eddelbuettel/rcppdate/workflows/ci/badge.svg)](https://github.com/eddelbuettel/rcppdate/actions?query=workflow%3Aci)
[![License](https://eddelbuettel.github.io/badges/GPL2+.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
[![CRAN](https://www.r-pkg.org/badges/version/RcppDate)](https://cran.r-project.org/package=RcppDate)
[![Dependencies](https://tinyverse.netlify.app/badge/RcppDate)](https://cran.r-project.org/package=RcppDate)
[![Downloads](https://cranlogs.r-pkg.org/badges/RcppDate?color=brightgreen)](https://www.r-pkg.org/pkg/RcppDate)
[![Last Commit](https://img.shields.io/github/last-commit/eddelbuettel/rcppdate)](https://github.com/eddelbuettel/rcppdate)

### About

The [date](https://github.com/HowardHinnant/date) library by Howard Hinnant
offers extensive date and time functionality for the C++11, C++14 and C++17
standards. A slighly modified version of `date.h` has been accepted (along
with `tz.h`) as part of C++20.

This package regroups all header files from the upstream repository by Howard
Hinnant so that other R packages can use them in their C++ code.

### Example

There is _a lot_ of functionality in this library. As a teaser, consider these three
compile-time instantiations of `year_month_day` types:

```c++
constexpr auto x1 = 2015_y/March/22;
constexpr auto x2 = March/22/2015;
constexpr auto x3 = 22_d/March/2015;
```

See the file [inst/examples/year_month_day.cpp](inst/examples/year_month_day.cpp) for
the complete example, and the upstream documentation for full details.

### Limitations

The `tz.h` header requires compiled support from
[`tz.cpp`](https://github.com/HowardHinnant/date/blob/master/src/tz.cpp)
which is not currently included so that this remains a header-only library.

### See Also

The [date](https://github.com/HowardHinnant/date) repository and its links to
documentation.

### Author

[date](https://github.com/HowardHinnant/date) was written by Howard Hinnant.

This package was put together by Dirk Eddelbuettel

### License

The underlying library is MIT licensed.

The packaging and integrations is licensed under GPL (>= 2).