R/otolith.R

Otolith <- R6::R6Class("Otolith", list(
  Age = NA,
  initialize = function(Age = NA) {
    stopifnot(is.numeric(Age), length(Age) == 1)
    self$Age <- Age
  }
))
kikirinrin/otolithr documentation built on April 30, 2020, 10:05 a.m.