This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/src/fill.hh

27 lines
432 B
C++

//
// php-armadillo/fill.hh
//
// @Author CismonX
//
#ifndef PHP_ARMA_FILL_HH
#define PHP_ARMA_FILL_HH
#include <php.h>
namespace php_arma
{
constexpr auto fill_none = 0;
constexpr auto fill_zeros = 1;
constexpr auto fill_ones = 2;
constexpr auto fill_eye = 3;
constexpr auto fill_randu = 4;
constexpr auto fill_randn = 5;
void fill_init();
extern zend_class_entry *fill_ce;
}
#endif //!PHP_ARMA_FILL_HH