├── .editorconfig ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── binding.gyp ├── examples └── index.js ├── include ├── Callbacks.h ├── MemBuf.h ├── RInside.h ├── RInsideCommon.h ├── RInsideConfig.h ├── Rcpp.h ├── Rcpp │ ├── Benchmark │ │ └── Timer.h │ ├── DataFrame.h │ ├── Date.h │ ├── DateVector.h │ ├── Datetime.h │ ├── DatetimeVector.h │ ├── Dimension.h │ ├── DottedPair.h │ ├── DottedPairImpl.h │ ├── Environment.h │ ├── Extractor.h │ ├── Fast.h │ ├── Formula.h │ ├── Function.h │ ├── InputParameter.h │ ├── InternalFunction.h │ ├── Interrupt.h │ ├── Language.h │ ├── Module.h │ ├── Na_Proxy.h │ ├── Named.h │ ├── Pairlist.h │ ├── Promise.h │ ├── RObject.h │ ├── Reference.h │ ├── Rmath.h │ ├── S4.h │ ├── StretchyList.h │ ├── String.h │ ├── StringTransformer.h │ ├── Symbol.h │ ├── Vector.h │ ├── WeakReference.h │ ├── XPtr.h │ ├── algo.h │ ├── api │ │ ├── bones │ │ │ ├── Date.h │ │ │ ├── Datetime.h │ │ │ ├── bones.h │ │ │ └── wrap_extra_steps.h │ │ └── meat │ │ │ ├── DataFrame.h │ │ │ ├── Date.h │ │ │ ├── Datetime.h │ │ │ ├── Dimension.h │ │ │ ├── DottedPairImpl.h │ │ │ ├── Environment.h │ │ │ ├── Rcpp_eval.h │ │ │ ├── S4.h │ │ │ ├── StretchyList.h │ │ │ ├── Vector.h │ │ │ ├── as.h │ │ │ ├── export.h │ │ │ ├── is.h │ │ │ ├── meat.h │ │ │ ├── module │ │ │ └── Module.h │ │ │ ├── protection.h │ │ │ └── wrap.h │ ├── as.h │ ├── barrier.h │ ├── clone.h │ ├── complex.h │ ├── config.h │ ├── exceptions.h │ ├── generated │ │ ├── DataFrame_generated.h │ │ ├── DottedPair__ctors.h │ │ ├── Function__operator.h │ │ ├── InternalFunction__ctors.h │ │ ├── Language__ctors.h │ │ ├── Pairlist__ctors.h │ │ ├── Vector__create.h │ │ └── grow__pairlist.h │ ├── grow.h │ ├── hash │ │ ├── IndexHash.h │ │ ├── SelfHash.h │ │ └── hash.h │ ├── internal │ │ ├── Exporter.h │ │ ├── GreedyVector.h │ │ ├── ListInitialization.h │ │ ├── NAComparator.h │ │ ├── NAEquals.h │ │ ├── Proxy_Iterator.h │ │ ├── SEXP_Iterator.h │ │ ├── caster.h │ │ ├── converter.h │ │ ├── export.h │ │ ├── na.h │ │ ├── r_coerce.h │ │ ├── r_vector.h │ │ ├── wrap.h │ │ └── wrap_end.h │ ├── iostream │ │ └── Rstreambuf.h │ ├── is.h │ ├── lang.h │ ├── longlong.h │ ├── macros │ │ ├── cat.hpp │ │ ├── config.hpp │ │ ├── debug.h │ │ ├── dispatch.h │ │ ├── interface.h │ │ ├── macros.h │ │ ├── module.h │ │ ├── preprocessor_generated.h │ │ ├── traits.h │ │ ├── unroll.h │ │ └── xp.h │ ├── module │ │ ├── CppFunction.h │ │ ├── Module.h │ │ ├── Module_Add_Property.h │ │ ├── Module_Field.h │ │ ├── Module_Property.h │ │ ├── Module_generated_Constructor.h │ │ ├── Module_generated_CppFunction.h │ │ ├── Module_generated_CppMethod.h │ │ ├── Module_generated_Factory.h │ │ ├── Module_generated_Pointer_CppMethod.h │ │ ├── Module_generated_Pointer_method.h │ │ ├── Module_generated_class_constructor.h │ │ ├── Module_generated_class_factory.h │ │ ├── Module_generated_class_signature.h │ │ ├── Module_generated_ctor_signature.h │ │ ├── Module_generated_function.h │ │ ├── Module_generated_get_signature.h │ │ ├── Module_generated_method.h │ │ ├── class.h │ │ ├── class_Base.h │ │ └── get_return_type.h │ ├── platform │ │ ├── compiler.h │ │ └── solaris.h │ ├── protection │ │ ├── Armor.h │ │ ├── Shelter.h │ │ ├── Shield.h │ │ └── protection.h │ ├── proxy │ │ ├── AttributeProxy.h │ │ ├── Binding.h │ │ ├── DottedPairProxy.h │ │ ├── FieldProxy.h │ │ ├── GenericProxy.h │ │ ├── NamesProxy.h │ │ ├── ProtectedProxy.h │ │ ├── RObjectMethods.h │ │ ├── SlotProxy.h │ │ ├── TagProxy.h │ │ └── proxy.h │ ├── r_cast.h │ ├── routines.h │ ├── sprintf.h │ ├── stats │ │ ├── beta.h │ │ ├── binom.h │ │ ├── cauchy.h │ │ ├── chisq.h │ │ ├── dpq │ │ │ ├── dpq.h │ │ │ └── macros.h │ │ ├── exp.h │ │ ├── f.h │ │ ├── gamma.h │ │ ├── geom.h │ │ ├── hyper.h │ │ ├── lnorm.h │ │ ├── logis.h │ │ ├── nbeta.h │ │ ├── nbinom.h │ │ ├── nbinom_mu.h │ │ ├── nchisq.h │ │ ├── nf.h │ │ ├── norm.h │ │ ├── nt.h │ │ ├── pois.h │ │ ├── random │ │ │ ├── random.h │ │ │ ├── rbeta.h │ │ │ ├── rbinom.h │ │ │ ├── rcauchy.h │ │ │ ├── rchisq.h │ │ │ ├── rexp.h │ │ │ ├── rf.h │ │ │ ├── rgamma.h │ │ │ ├── rgeom.h │ │ │ ├── rhyper.h │ │ │ ├── rlnorm.h │ │ │ ├── rlogis.h │ │ │ ├── rnbinom.h │ │ │ ├── rnbinom_mu.h │ │ │ ├── rnchisq.h │ │ │ ├── rnorm.h │ │ │ ├── rpois.h │ │ │ ├── rsignrank.h │ │ │ ├── rt.h │ │ │ ├── runif.h │ │ │ ├── rweibull.h │ │ │ └── rwilcox.h │ │ ├── stats.h │ │ ├── t.h │ │ ├── unif.h │ │ └── weibull.h │ ├── storage │ │ ├── NoProtectStorage.h │ │ ├── PreserveStorage.h │ │ └── storage.h │ ├── sugar │ │ ├── Range.h │ │ ├── block │ │ │ ├── SugarBlock_1.h │ │ │ ├── SugarBlock_2.h │ │ │ ├── SugarBlock_3.h │ │ │ ├── SugarMath.h │ │ │ ├── Vectorized_Math.h │ │ │ └── block.h │ │ ├── functions │ │ │ ├── Lazy.h │ │ │ ├── all.h │ │ │ ├── any.h │ │ │ ├── clamp.h │ │ │ ├── complex.h │ │ │ ├── cumsum.h │ │ │ ├── diff.h │ │ │ ├── duplicated.h │ │ │ ├── functions.h │ │ │ ├── head.h │ │ │ ├── ifelse.h │ │ │ ├── is_finite.h │ │ │ ├── is_infinite.h │ │ │ ├── is_na.h │ │ │ ├── is_nan.h │ │ │ ├── lapply.h │ │ │ ├── mapply.h │ │ │ ├── mapply │ │ │ │ ├── mapply_2.h │ │ │ │ └── mapply_3.h │ │ │ ├── match.h │ │ │ ├── math.h │ │ │ ├── max.h │ │ │ ├── mean.h │ │ │ ├── min.h │ │ │ ├── na_omit.h │ │ │ ├── pmax.h │ │ │ ├── pmin.h │ │ │ ├── pow.h │ │ │ ├── range.h │ │ │ ├── rep.h │ │ │ ├── rep_each.h │ │ │ ├── rep_len.h │ │ │ ├── rev.h │ │ │ ├── sapply.h │ │ │ ├── sd.h │ │ │ ├── self_match.h │ │ │ ├── seq_along.h │ │ │ ├── setdiff.h │ │ │ ├── sign.h │ │ │ ├── strings │ │ │ │ ├── collapse.h │ │ │ │ └── strings.h │ │ │ ├── sum.h │ │ │ ├── table.h │ │ │ ├── tail.h │ │ │ ├── unique.h │ │ │ ├── var.h │ │ │ ├── which_max.h │ │ │ └── which_min.h │ │ ├── logical │ │ │ ├── SingleLogicalResult.h │ │ │ ├── and.h │ │ │ ├── can_have_na.h │ │ │ ├── is.h │ │ │ ├── logical.h │ │ │ ├── not.h │ │ │ └── or.h │ │ ├── matrix │ │ │ ├── as_vector.h │ │ │ ├── col.h │ │ │ ├── diag.h │ │ │ ├── lower_tri.h │ │ │ ├── matrix_functions.h │ │ │ ├── outer.h │ │ │ ├── row.h │ │ │ ├── tools.h │ │ │ └── upper_tri.h │ │ ├── nona │ │ │ └── nona.h │ │ ├── operators │ │ │ ├── Comparator.h │ │ │ ├── Comparator_With_One_Value.h │ │ │ ├── divides.h │ │ │ ├── logical_operators__Vector__Vector.h │ │ │ ├── logical_operators__Vector__primitive.h │ │ │ ├── minus.h │ │ │ ├── not.h │ │ │ ├── operators.h │ │ │ ├── plus.h │ │ │ ├── r_binary_op.h │ │ │ ├── times.h │ │ │ └── unary_minus.h │ │ ├── sets.h │ │ ├── sugar.h │ │ ├── sugar_forward.h │ │ ├── tools │ │ │ └── iterator.h │ │ └── undoRmath.h │ ├── traits │ │ ├── char_type.h │ │ ├── expands_to_logical.h │ │ ├── get_na.h │ │ ├── has_iterator.h │ │ ├── has_na.h │ │ ├── if_.h │ │ ├── init_type.h │ │ ├── integral_constant.h │ │ ├── is_const.h │ │ ├── is_convertible.h │ │ ├── is_eigen_base.h │ │ ├── is_finite.h │ │ ├── is_infinite.h │ │ ├── is_module_object.h │ │ ├── is_na.h │ │ ├── is_nan.h │ │ ├── is_pointer.h │ │ ├── is_primitive.h │ │ ├── is_reference.h │ │ ├── is_sugar_expression.h │ │ ├── is_trivial.h │ │ ├── is_wide_string.h │ │ ├── longlong.h │ │ ├── matrix_interface.h │ │ ├── module_wrap_traits.h │ │ ├── named_object.h │ │ ├── num2type.h │ │ ├── r_sexptype_traits.h │ │ ├── r_type_traits.h │ │ ├── remove_const.h │ │ ├── remove_const_and_reference.h │ │ ├── remove_reference.h │ │ ├── result_of.h │ │ ├── same_type.h │ │ ├── storage_type.h │ │ ├── traits.h │ │ ├── un_pointer.h │ │ └── wrap_type_traits.h │ └── vector │ │ ├── 00_forward_Vector.h │ │ ├── 00_forward_proxy.h │ │ ├── LazyVector.h │ │ ├── Matrix.h │ │ ├── MatrixBase.h │ │ ├── MatrixColumn.h │ │ ├── MatrixRow.h │ │ ├── RangeIndexer.h │ │ ├── SubMatrix.h │ │ ├── Subsetter.h │ │ ├── Vector.h │ │ ├── VectorBase.h │ │ ├── const_generic_proxy.h │ │ ├── const_string_proxy.h │ │ ├── converter.h │ │ ├── generic_proxy.h │ │ ├── instantiation.h │ │ ├── no_init.h │ │ ├── proxy.h │ │ ├── string_proxy.h │ │ ├── swap.h │ │ ├── traits.h │ │ └── vector_from_string.h ├── RcppCommon.h ├── doxygen │ └── Examples.h └── test.h ├── install-rpackages.sh ├── lib └── index.js ├── package.json ├── src ├── helper.h ├── rl.cpp ├── rlink.cpp └── rlink.h └── test └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/.jshintignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/binding.gyp -------------------------------------------------------------------------------- /examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/examples/index.js -------------------------------------------------------------------------------- /include/Callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Callbacks.h -------------------------------------------------------------------------------- /include/MemBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/MemBuf.h -------------------------------------------------------------------------------- /include/RInside.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/RInside.h -------------------------------------------------------------------------------- /include/RInsideCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/RInsideCommon.h -------------------------------------------------------------------------------- /include/RInsideConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/RInsideConfig.h -------------------------------------------------------------------------------- /include/Rcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp.h -------------------------------------------------------------------------------- /include/Rcpp/Benchmark/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Benchmark/Timer.h -------------------------------------------------------------------------------- /include/Rcpp/DataFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/DataFrame.h -------------------------------------------------------------------------------- /include/Rcpp/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Date.h -------------------------------------------------------------------------------- /include/Rcpp/DateVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/DateVector.h -------------------------------------------------------------------------------- /include/Rcpp/Datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Datetime.h -------------------------------------------------------------------------------- /include/Rcpp/DatetimeVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/DatetimeVector.h -------------------------------------------------------------------------------- /include/Rcpp/Dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Dimension.h -------------------------------------------------------------------------------- /include/Rcpp/DottedPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/DottedPair.h -------------------------------------------------------------------------------- /include/Rcpp/DottedPairImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/DottedPairImpl.h -------------------------------------------------------------------------------- /include/Rcpp/Environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Environment.h -------------------------------------------------------------------------------- /include/Rcpp/Extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Extractor.h -------------------------------------------------------------------------------- /include/Rcpp/Fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Fast.h -------------------------------------------------------------------------------- /include/Rcpp/Formula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Formula.h -------------------------------------------------------------------------------- /include/Rcpp/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Function.h -------------------------------------------------------------------------------- /include/Rcpp/InputParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/InputParameter.h -------------------------------------------------------------------------------- /include/Rcpp/InternalFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/InternalFunction.h -------------------------------------------------------------------------------- /include/Rcpp/Interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Interrupt.h -------------------------------------------------------------------------------- /include/Rcpp/Language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Language.h -------------------------------------------------------------------------------- /include/Rcpp/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Module.h -------------------------------------------------------------------------------- /include/Rcpp/Na_Proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Na_Proxy.h -------------------------------------------------------------------------------- /include/Rcpp/Named.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Named.h -------------------------------------------------------------------------------- /include/Rcpp/Pairlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Pairlist.h -------------------------------------------------------------------------------- /include/Rcpp/Promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Promise.h -------------------------------------------------------------------------------- /include/Rcpp/RObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/RObject.h -------------------------------------------------------------------------------- /include/Rcpp/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Reference.h -------------------------------------------------------------------------------- /include/Rcpp/Rmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Rmath.h -------------------------------------------------------------------------------- /include/Rcpp/S4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/S4.h -------------------------------------------------------------------------------- /include/Rcpp/StretchyList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/StretchyList.h -------------------------------------------------------------------------------- /include/Rcpp/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/String.h -------------------------------------------------------------------------------- /include/Rcpp/StringTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/StringTransformer.h -------------------------------------------------------------------------------- /include/Rcpp/Symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Symbol.h -------------------------------------------------------------------------------- /include/Rcpp/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/Vector.h -------------------------------------------------------------------------------- /include/Rcpp/WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/WeakReference.h -------------------------------------------------------------------------------- /include/Rcpp/XPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/XPtr.h -------------------------------------------------------------------------------- /include/Rcpp/algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/algo.h -------------------------------------------------------------------------------- /include/Rcpp/api/bones/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/bones/Date.h -------------------------------------------------------------------------------- /include/Rcpp/api/bones/Datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/bones/Datetime.h -------------------------------------------------------------------------------- /include/Rcpp/api/bones/bones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/bones/bones.h -------------------------------------------------------------------------------- /include/Rcpp/api/bones/wrap_extra_steps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/bones/wrap_extra_steps.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/DataFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/DataFrame.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/Date.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/Datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/Datetime.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/Dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/Dimension.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/DottedPairImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/DottedPairImpl.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/Environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/Environment.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/Rcpp_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/Rcpp_eval.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/S4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/S4.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/StretchyList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/StretchyList.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/Vector.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/as.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/export.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/is.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/is.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/meat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/meat.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/module/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/module/Module.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/protection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/protection.h -------------------------------------------------------------------------------- /include/Rcpp/api/meat/wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/api/meat/wrap.h -------------------------------------------------------------------------------- /include/Rcpp/as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/as.h -------------------------------------------------------------------------------- /include/Rcpp/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/barrier.h -------------------------------------------------------------------------------- /include/Rcpp/clone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/clone.h -------------------------------------------------------------------------------- /include/Rcpp/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/complex.h -------------------------------------------------------------------------------- /include/Rcpp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/config.h -------------------------------------------------------------------------------- /include/Rcpp/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/exceptions.h -------------------------------------------------------------------------------- /include/Rcpp/generated/DataFrame_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/generated/DataFrame_generated.h -------------------------------------------------------------------------------- /include/Rcpp/generated/DottedPair__ctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/generated/DottedPair__ctors.h -------------------------------------------------------------------------------- /include/Rcpp/generated/Function__operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/generated/Function__operator.h -------------------------------------------------------------------------------- /include/Rcpp/generated/InternalFunction__ctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/generated/InternalFunction__ctors.h -------------------------------------------------------------------------------- /include/Rcpp/generated/Language__ctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/generated/Language__ctors.h -------------------------------------------------------------------------------- /include/Rcpp/generated/Pairlist__ctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/generated/Pairlist__ctors.h -------------------------------------------------------------------------------- /include/Rcpp/generated/Vector__create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/generated/Vector__create.h -------------------------------------------------------------------------------- /include/Rcpp/generated/grow__pairlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/generated/grow__pairlist.h -------------------------------------------------------------------------------- /include/Rcpp/grow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/grow.h -------------------------------------------------------------------------------- /include/Rcpp/hash/IndexHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/hash/IndexHash.h -------------------------------------------------------------------------------- /include/Rcpp/hash/SelfHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/hash/SelfHash.h -------------------------------------------------------------------------------- /include/Rcpp/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/hash/hash.h -------------------------------------------------------------------------------- /include/Rcpp/internal/Exporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/Exporter.h -------------------------------------------------------------------------------- /include/Rcpp/internal/GreedyVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/GreedyVector.h -------------------------------------------------------------------------------- /include/Rcpp/internal/ListInitialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/ListInitialization.h -------------------------------------------------------------------------------- /include/Rcpp/internal/NAComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/NAComparator.h -------------------------------------------------------------------------------- /include/Rcpp/internal/NAEquals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/NAEquals.h -------------------------------------------------------------------------------- /include/Rcpp/internal/Proxy_Iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/Proxy_Iterator.h -------------------------------------------------------------------------------- /include/Rcpp/internal/SEXP_Iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/SEXP_Iterator.h -------------------------------------------------------------------------------- /include/Rcpp/internal/caster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/caster.h -------------------------------------------------------------------------------- /include/Rcpp/internal/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/converter.h -------------------------------------------------------------------------------- /include/Rcpp/internal/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/export.h -------------------------------------------------------------------------------- /include/Rcpp/internal/na.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/na.h -------------------------------------------------------------------------------- /include/Rcpp/internal/r_coerce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/r_coerce.h -------------------------------------------------------------------------------- /include/Rcpp/internal/r_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/r_vector.h -------------------------------------------------------------------------------- /include/Rcpp/internal/wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/wrap.h -------------------------------------------------------------------------------- /include/Rcpp/internal/wrap_end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/internal/wrap_end.h -------------------------------------------------------------------------------- /include/Rcpp/iostream/Rstreambuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/iostream/Rstreambuf.h -------------------------------------------------------------------------------- /include/Rcpp/is.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/is.h -------------------------------------------------------------------------------- /include/Rcpp/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/lang.h -------------------------------------------------------------------------------- /include/Rcpp/longlong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/longlong.h -------------------------------------------------------------------------------- /include/Rcpp/macros/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/cat.hpp -------------------------------------------------------------------------------- /include/Rcpp/macros/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/config.hpp -------------------------------------------------------------------------------- /include/Rcpp/macros/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/debug.h -------------------------------------------------------------------------------- /include/Rcpp/macros/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/dispatch.h -------------------------------------------------------------------------------- /include/Rcpp/macros/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/interface.h -------------------------------------------------------------------------------- /include/Rcpp/macros/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/macros.h -------------------------------------------------------------------------------- /include/Rcpp/macros/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/module.h -------------------------------------------------------------------------------- /include/Rcpp/macros/preprocessor_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/preprocessor_generated.h -------------------------------------------------------------------------------- /include/Rcpp/macros/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/traits.h -------------------------------------------------------------------------------- /include/Rcpp/macros/unroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/unroll.h -------------------------------------------------------------------------------- /include/Rcpp/macros/xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/macros/xp.h -------------------------------------------------------------------------------- /include/Rcpp/module/CppFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/CppFunction.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_Add_Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_Add_Property.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_Field.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_Property.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_Constructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_Constructor.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_CppFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_CppFunction.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_CppMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_CppMethod.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_Factory.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_Pointer_CppMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_Pointer_CppMethod.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_Pointer_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_Pointer_method.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_class_constructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_class_constructor.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_class_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_class_factory.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_class_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_class_signature.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_ctor_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_ctor_signature.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_function.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_get_signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_get_signature.h -------------------------------------------------------------------------------- /include/Rcpp/module/Module_generated_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/Module_generated_method.h -------------------------------------------------------------------------------- /include/Rcpp/module/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/class.h -------------------------------------------------------------------------------- /include/Rcpp/module/class_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/class_Base.h -------------------------------------------------------------------------------- /include/Rcpp/module/get_return_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/module/get_return_type.h -------------------------------------------------------------------------------- /include/Rcpp/platform/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/platform/compiler.h -------------------------------------------------------------------------------- /include/Rcpp/platform/solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/platform/solaris.h -------------------------------------------------------------------------------- /include/Rcpp/protection/Armor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/protection/Armor.h -------------------------------------------------------------------------------- /include/Rcpp/protection/Shelter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/protection/Shelter.h -------------------------------------------------------------------------------- /include/Rcpp/protection/Shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/protection/Shield.h -------------------------------------------------------------------------------- /include/Rcpp/protection/protection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/protection/protection.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/AttributeProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/AttributeProxy.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/Binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/Binding.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/DottedPairProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/DottedPairProxy.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/FieldProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/FieldProxy.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/GenericProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/GenericProxy.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/NamesProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/NamesProxy.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/ProtectedProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/ProtectedProxy.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/RObjectMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/RObjectMethods.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/SlotProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/SlotProxy.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/TagProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/TagProxy.h -------------------------------------------------------------------------------- /include/Rcpp/proxy/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/proxy/proxy.h -------------------------------------------------------------------------------- /include/Rcpp/r_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/r_cast.h -------------------------------------------------------------------------------- /include/Rcpp/routines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/routines.h -------------------------------------------------------------------------------- /include/Rcpp/sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sprintf.h -------------------------------------------------------------------------------- /include/Rcpp/stats/beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/beta.h -------------------------------------------------------------------------------- /include/Rcpp/stats/binom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/binom.h -------------------------------------------------------------------------------- /include/Rcpp/stats/cauchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/cauchy.h -------------------------------------------------------------------------------- /include/Rcpp/stats/chisq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/chisq.h -------------------------------------------------------------------------------- /include/Rcpp/stats/dpq/dpq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/dpq/dpq.h -------------------------------------------------------------------------------- /include/Rcpp/stats/dpq/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/dpq/macros.h -------------------------------------------------------------------------------- /include/Rcpp/stats/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/exp.h -------------------------------------------------------------------------------- /include/Rcpp/stats/f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/f.h -------------------------------------------------------------------------------- /include/Rcpp/stats/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/gamma.h -------------------------------------------------------------------------------- /include/Rcpp/stats/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/geom.h -------------------------------------------------------------------------------- /include/Rcpp/stats/hyper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/hyper.h -------------------------------------------------------------------------------- /include/Rcpp/stats/lnorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/lnorm.h -------------------------------------------------------------------------------- /include/Rcpp/stats/logis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/logis.h -------------------------------------------------------------------------------- /include/Rcpp/stats/nbeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/nbeta.h -------------------------------------------------------------------------------- /include/Rcpp/stats/nbinom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/nbinom.h -------------------------------------------------------------------------------- /include/Rcpp/stats/nbinom_mu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/nbinom_mu.h -------------------------------------------------------------------------------- /include/Rcpp/stats/nchisq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/nchisq.h -------------------------------------------------------------------------------- /include/Rcpp/stats/nf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/nf.h -------------------------------------------------------------------------------- /include/Rcpp/stats/norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/norm.h -------------------------------------------------------------------------------- /include/Rcpp/stats/nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/nt.h -------------------------------------------------------------------------------- /include/Rcpp/stats/pois.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/pois.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/random.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rbeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rbeta.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rbinom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rbinom.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rcauchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rcauchy.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rchisq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rchisq.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rexp.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rf.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rgamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rgamma.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rgeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rgeom.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rhyper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rhyper.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rlnorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rlnorm.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rlogis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rlogis.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rnbinom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rnbinom.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rnbinom_mu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rnbinom_mu.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rnchisq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rnchisq.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rnorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rnorm.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rpois.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rpois.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rsignrank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rsignrank.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rt.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/runif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/runif.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rweibull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rweibull.h -------------------------------------------------------------------------------- /include/Rcpp/stats/random/rwilcox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/random/rwilcox.h -------------------------------------------------------------------------------- /include/Rcpp/stats/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/stats.h -------------------------------------------------------------------------------- /include/Rcpp/stats/t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/t.h -------------------------------------------------------------------------------- /include/Rcpp/stats/unif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/unif.h -------------------------------------------------------------------------------- /include/Rcpp/stats/weibull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/stats/weibull.h -------------------------------------------------------------------------------- /include/Rcpp/storage/NoProtectStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/storage/NoProtectStorage.h -------------------------------------------------------------------------------- /include/Rcpp/storage/PreserveStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/storage/PreserveStorage.h -------------------------------------------------------------------------------- /include/Rcpp/storage/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/storage/storage.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/Range.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/block/SugarBlock_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/block/SugarBlock_1.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/block/SugarBlock_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/block/SugarBlock_2.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/block/SugarBlock_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/block/SugarBlock_3.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/block/SugarMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/block/SugarMath.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/block/Vectorized_Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/block/Vectorized_Math.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/block/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/block/block.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/Lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/Lazy.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/all.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/any.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/clamp.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/complex.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/cumsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/cumsum.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/diff.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/duplicated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/duplicated.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/functions.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/head.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/ifelse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/ifelse.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/is_finite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/is_finite.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/is_infinite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/is_infinite.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/is_na.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/is_na.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/is_nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/is_nan.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/lapply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/lapply.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/mapply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/mapply.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/mapply/mapply_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/mapply/mapply_2.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/mapply/mapply_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/mapply/mapply_3.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/match.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/math.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/max.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/mean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/mean.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/min.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/na_omit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/na_omit.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/pmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/pmax.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/pmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/pmin.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/pow.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/range.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/rep.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/rep_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/rep_each.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/rep_len.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/rep_len.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/rev.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/sapply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/sapply.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/sd.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/self_match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/self_match.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/seq_along.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/seq_along.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/setdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/setdiff.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/sign.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/strings/collapse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/strings/collapse.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/strings/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/strings/strings.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/sum.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/table.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/tail.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/unique.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/var.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/which_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/which_max.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/functions/which_min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/functions/which_min.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/logical/SingleLogicalResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/logical/SingleLogicalResult.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/logical/and.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/logical/and.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/logical/can_have_na.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/logical/can_have_na.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/logical/is.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/logical/is.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/logical/logical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/logical/logical.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/logical/not.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/logical/not.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/logical/or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/logical/or.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/matrix/as_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/matrix/as_vector.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/matrix/col.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/matrix/col.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/matrix/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/matrix/diag.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/matrix/lower_tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/matrix/lower_tri.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/matrix/matrix_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/matrix/matrix_functions.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/matrix/outer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/matrix/outer.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/matrix/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/matrix/row.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/matrix/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/matrix/tools.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/matrix/upper_tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/matrix/upper_tri.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/nona/nona.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/nona/nona.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/Comparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/Comparator.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/Comparator_With_One_Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/Comparator_With_One_Value.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/divides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/divides.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/logical_operators__Vector__Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/logical_operators__Vector__Vector.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/logical_operators__Vector__primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/logical_operators__Vector__primitive.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/minus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/minus.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/not.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/not.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/operators.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/plus.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/r_binary_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/r_binary_op.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/times.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/operators/unary_minus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/operators/unary_minus.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/sets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/sets.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/sugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/sugar.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/sugar_forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/sugar_forward.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/tools/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/tools/iterator.h -------------------------------------------------------------------------------- /include/Rcpp/sugar/undoRmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/sugar/undoRmath.h -------------------------------------------------------------------------------- /include/Rcpp/traits/char_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/char_type.h -------------------------------------------------------------------------------- /include/Rcpp/traits/expands_to_logical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/expands_to_logical.h -------------------------------------------------------------------------------- /include/Rcpp/traits/get_na.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/get_na.h -------------------------------------------------------------------------------- /include/Rcpp/traits/has_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/has_iterator.h -------------------------------------------------------------------------------- /include/Rcpp/traits/has_na.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/has_na.h -------------------------------------------------------------------------------- /include/Rcpp/traits/if_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/if_.h -------------------------------------------------------------------------------- /include/Rcpp/traits/init_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/init_type.h -------------------------------------------------------------------------------- /include/Rcpp/traits/integral_constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/integral_constant.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_const.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_convertible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_convertible.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_eigen_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_eigen_base.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_finite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_finite.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_infinite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_infinite.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_module_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_module_object.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_na.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_na.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_nan.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_pointer.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_primitive.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_reference.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_sugar_expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_sugar_expression.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_trivial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_trivial.h -------------------------------------------------------------------------------- /include/Rcpp/traits/is_wide_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/is_wide_string.h -------------------------------------------------------------------------------- /include/Rcpp/traits/longlong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/longlong.h -------------------------------------------------------------------------------- /include/Rcpp/traits/matrix_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/matrix_interface.h -------------------------------------------------------------------------------- /include/Rcpp/traits/module_wrap_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/module_wrap_traits.h -------------------------------------------------------------------------------- /include/Rcpp/traits/named_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/named_object.h -------------------------------------------------------------------------------- /include/Rcpp/traits/num2type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/num2type.h -------------------------------------------------------------------------------- /include/Rcpp/traits/r_sexptype_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/r_sexptype_traits.h -------------------------------------------------------------------------------- /include/Rcpp/traits/r_type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/r_type_traits.h -------------------------------------------------------------------------------- /include/Rcpp/traits/remove_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/remove_const.h -------------------------------------------------------------------------------- /include/Rcpp/traits/remove_const_and_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/remove_const_and_reference.h -------------------------------------------------------------------------------- /include/Rcpp/traits/remove_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/remove_reference.h -------------------------------------------------------------------------------- /include/Rcpp/traits/result_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/result_of.h -------------------------------------------------------------------------------- /include/Rcpp/traits/same_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/same_type.h -------------------------------------------------------------------------------- /include/Rcpp/traits/storage_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/storage_type.h -------------------------------------------------------------------------------- /include/Rcpp/traits/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/traits.h -------------------------------------------------------------------------------- /include/Rcpp/traits/un_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/un_pointer.h -------------------------------------------------------------------------------- /include/Rcpp/traits/wrap_type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/traits/wrap_type_traits.h -------------------------------------------------------------------------------- /include/Rcpp/vector/00_forward_Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/00_forward_Vector.h -------------------------------------------------------------------------------- /include/Rcpp/vector/00_forward_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/00_forward_proxy.h -------------------------------------------------------------------------------- /include/Rcpp/vector/LazyVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/LazyVector.h -------------------------------------------------------------------------------- /include/Rcpp/vector/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/Matrix.h -------------------------------------------------------------------------------- /include/Rcpp/vector/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/MatrixBase.h -------------------------------------------------------------------------------- /include/Rcpp/vector/MatrixColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/MatrixColumn.h -------------------------------------------------------------------------------- /include/Rcpp/vector/MatrixRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/MatrixRow.h -------------------------------------------------------------------------------- /include/Rcpp/vector/RangeIndexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/RangeIndexer.h -------------------------------------------------------------------------------- /include/Rcpp/vector/SubMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/SubMatrix.h -------------------------------------------------------------------------------- /include/Rcpp/vector/Subsetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/Subsetter.h -------------------------------------------------------------------------------- /include/Rcpp/vector/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/Vector.h -------------------------------------------------------------------------------- /include/Rcpp/vector/VectorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/VectorBase.h -------------------------------------------------------------------------------- /include/Rcpp/vector/const_generic_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/const_generic_proxy.h -------------------------------------------------------------------------------- /include/Rcpp/vector/const_string_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/const_string_proxy.h -------------------------------------------------------------------------------- /include/Rcpp/vector/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/converter.h -------------------------------------------------------------------------------- /include/Rcpp/vector/generic_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/generic_proxy.h -------------------------------------------------------------------------------- /include/Rcpp/vector/instantiation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/instantiation.h -------------------------------------------------------------------------------- /include/Rcpp/vector/no_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/no_init.h -------------------------------------------------------------------------------- /include/Rcpp/vector/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/proxy.h -------------------------------------------------------------------------------- /include/Rcpp/vector/string_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/string_proxy.h -------------------------------------------------------------------------------- /include/Rcpp/vector/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/swap.h -------------------------------------------------------------------------------- /include/Rcpp/vector/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/traits.h -------------------------------------------------------------------------------- /include/Rcpp/vector/vector_from_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/Rcpp/vector/vector_from_string.h -------------------------------------------------------------------------------- /include/RcppCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/RcppCommon.h -------------------------------------------------------------------------------- /include/doxygen/Examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/include/doxygen/Examples.h -------------------------------------------------------------------------------- /include/test.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install-rpackages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/install-rpackages.sh -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/package.json -------------------------------------------------------------------------------- /src/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/src/helper.h -------------------------------------------------------------------------------- /src/rl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/src/rl.cpp -------------------------------------------------------------------------------- /src/rlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/src/rlink.cpp -------------------------------------------------------------------------------- /src/rlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/src/rlink.h -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-Rstats/HEAD/test/test.js --------------------------------------------------------------------------------