Skip to contents

This function checks if an object is of class "chatlog".

Usage

is_chatlog(object)

Arguments

object

An R object to check

Value

TRUE if the object is of class "chatlog", FALSE otherwise

Author

Ulrich Matter umatter@protonmail.com

Examples

is_chatlog("Hello, World!")
#> [1] FALSE
# [1] FALSE

chat <- new("chatlog")
is_chatlog(chat)
#> [1] TRUE
# [1] TRUE