R/silicate.R

Defines functions silicate has_object has_path has_edge has_vertex has_thing include_nn

Documented in silicate

# nocov start
include_nn <- function(x, y, name) {
  if (!is.null(y)) x[[name]] <- tibble::as_tibble(y)
  x
}
has_thing <- function(x, thing) {
  thing %in% names(x) && tibble::is_tibble(x[[thing]])
}
has_vertex <- function(x) {
  has_thing(x, "vertex")
}

has_edge <- function(x) {
 has_thing(x, "edge")
}
has_path <- function(x) {
  has_thing(x, "path")
}
has_object <- function(x) {
  has_thing(x, "object")
}

silicate <- function(vertex = NULL, edge = NULL, path = NULL, object = NULL, model = NULL) {
  x <- model %||% list()
  x <- include_nn(x, vertex, "vertex")
  x <- include_nn(x, edge, "edge")
  x <- include_nn(x, path, "path")
  x <- include_nn(x, object, "object")

  if (length(x) == 0L) warning("empty silicate shell")
  structure(x, class = "sc")
}

# nocov end

Try the silicate package in your browser

Any scripts or data that you put into this service are public.

silicate documentation built on Jan. 7, 2023, 1:15 a.m.