File: Serializers.Rd

package info (click to toggle)
r-cran-vcr 0.2.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 596 kB
  • sloc: sh: 13; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 789 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/serializers.R
\docType{data}
\name{Serializers}
\alias{Serializers}
\alias{serializer_fetch}
\title{Keeps track of the cassette serializers in a hash-like object}
\usage{
serializer_fetch(x = "yaml", name)
}
\arguments{
\item{name}{Name of a serializer. Only option is "yaml" for now}

\item{serializers}{List of serializers}
}
\description{
Keeps track of the cassette serializers in a hash-like object
}
\details{
\strong{Private Methods}
\describe{
\item{\code{serialize_get()}}{
Gets a named serializer. This is also run on initialize of this function
}
}
}
\examples{
\dontrun{
(aa <- Serializers$new())
aa$name
aa$serializers
yaml_serializer <- aa$serializers$new()
yaml_serializer
}
}
\keyword{internal}