You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
typedef uint32_t tsk_flags_t
Container for bitwise flags.
Bitwise flags are used in tskit as a column type and also as a way to specify options to API functions
When I started I just used int in C++,
but best to be consistent.
What should we use though?
Can we just use tsk_flags_t and how will this interact with R and Rcpp?
tskit Cuses https://tskit.dev/tskit/docs/stable/c-api.html#c.tsk_flags_tWhen I started I just used
intin C++,but best to be consistent.
What should we use though?
Can we just use
tsk_flags_tand how will this interact withRandRcpp?