type: Create a Q7 Type

Description Usage Arguments Value Examples

View source: R/core.R

Description

Create a Q7 Type

Usage

1
2
type(x = function() {
}, s3 = "Q7default")

Arguments

x

function or expression; becomes the definition of the object

s3

S3 class for the object; necessary when using S3 generic functions

Value

Q7 type; function

Examples

1
2
3
4
5
6
7
8
Adder <- type(function(num1, num2){
    add_nums <- function(){
        num1 + num2
    }
 })

myAdder <- Adder(1, 2)
myAdder$add_nums()

Q7 documentation built on Jan. 13, 2021, 10:11 a.m.