Package 'fireworks'

Title: Fireworks for R
Description: A toolbox for hacking on the language.
Authors: Charlie Gao [aut, cre] , Hibiki AI Limited [cph], R Core [cph]
Maintainer: Charlie Gao <[email protected]>
License: GPL (>= 3)
Version: 0.0.1
Built: 2024-08-10 05:15:51 UTC
Source: https://github.com/shikokuchuo/fireworks

Help Index


fireworks: Fireworks for R

Description

A toolbox for hacking on the language.

Author(s)

Charlie Gao [email protected] (ORCID)

See Also

Useful links:


Boom

Description

Errors if attempting to print or assign the return value. Resistant to handling with tryCatch().

Usage

boom()

Value

The symbol R_UnboundValue.

Examples

isS4(sparkle(boom()))

Fountain

Description

Returns a very large (unallocated) raw vector.

Usage

fountain()

Value

A raw vector.

Examples

x <- fountain()
str(x)
x[1]

Sparkle

Description

Sets the S4 bit on the R object so that isS4() returns TRUE on it.

Usage

sparkle(x)

Arguments

x

an object.

Value

Invisibly, the supplied object with the ‘S4’ bit set (modified in place).

Examples

x <- fountain()
isS4(x)
sparkle(x)
isS4(x)