Function tskit::bindings::tsk_individual_table_equals[][src]

pub unsafe extern "C" fn tsk_individual_table_equals(
    self_: *const tsk_individual_table_t,
    other: *const tsk_individual_table_t,
    options: tsk_flags_t
) -> bool

@brief Returns true if the data in the specified table is identical to the data in this table.

@rst

Options**

Options to control the comparison can be specified by providing one or more of the following bitwise flags. By default (options=0) tables are considered equal if they are byte-wise identical in all columns, and their metadata schemas are byte-wise identical.

TSK_CMP_IGNORE_METADATA Do not include metadata or metadata schemas in the comparison.

@endrst

@param self A pointer to a tsk_individual_table_t object. @param other A pointer to a tsk_individual_table_t object. @param options Bitwise comparison options. @return Return true if the specified table is equal to this table.