lsclass: Q&D function to list all objects with the specified 'class...

View source: R/lsclass.R

lsclassR Documentation

Q&D function to list all objects with the specified class attribute .

Description

This is one of the author's collection of ls* Q&D functions. Since anyone can define a new class at any time, there is no predefined set of legal or illegal class names. Remember that an object can have multiple classes. This function only allows searching for a single class name in a given call.

Usage

lsclass(type = "numeric")

Arguments

type

The name of the class you're looking for.

Value

A vector of character strings containing the names of matching objects (as would be returned by the base function ls ) .

Author(s)

Carl Witthoft carl@witthoft.com

See Also

typeof, class , lstype

Examples

xyzzy<-structure(vector(),class='grue')
lsclass('integer')
lsclass('grue') 

cgwtools documentation built on Oct. 21, 2023, 1:06 a.m.