are_equal_tracelogs: Determine if two tracelogs are equal.

View source: R/are_equal_tracelogs.R

are_equal_tracelogsR Documentation

Determine if two tracelogs are equal.

Description

Will stop if the arguments are not tracelogs.

Usage

are_equal_tracelogs(tracelog_1, tracelog_2)

Arguments

tracelog_1

an tracelog, as created by create_tracelog

tracelog_2

an tracelog, as created by create_tracelog

Value

TRUE if the two tracelogs are equal

Author(s)

Richèl J.C. Bilderbeek

See Also

Use create_tracelog to create an tracelog

Examples

check_empty_beautier_folder()

tracelog_1 <- create_tracelog(log_every = 1000)
tracelog_2 <- create_tracelog(log_every = 314)
# TRUE
are_equal_tracelogs(tracelog_1, tracelog_1)
# FALSE
are_equal_tracelogs(tracelog_1, tracelog_2)

check_empty_beautier_folder()

beautier documentation built on Nov. 2, 2023, 5:08 p.m.