Learn R Programming

phylosim (version 3.0.5)

is.Site: Check if an object is an instance of the Site class

Description

Check if an object is an instance of the Site class.

Usage

# S3 method for default
is.Site(this, ...)

Arguments

this

An object.

...

Not used.

Value

TRUE or FALSE.

See Also

For more information see Site.

Examples

Run this code
# NOT RUN {
	# create an object
	s<-Site();
	# check whether is a Site object
	is.Site(s)
	# the same with an Event object
	is.Site(Event());
 
# }

Run the code above in your browser using DataLab