dhtslib.htslib.kstring

Undocumented in source.

Members

Aliases

kstring_t
alias kstring_t = __kstring_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

__kstring_t
struct __kstring_t

kstring_t is a simple non-opaque type whose fields are likely to be * used directly by user code (but see also ks_str() and ks_len() below). * A kstring_t object is initialised by either of * kstring_t str = { 0, 0, NULL }; * kstring_t str; ...; str.l = str.m = 0; str.s = NULL; * (NB: in Dlang it is automagically initialized to zeros unless declared = void) * and either ownership of the underlying buffer should be given away before * the object disappears (see ks_release() below) or the kstring_t should be * destroyed with free(str.s);

ks_tokaux_t
struct ks_tokaux_t

???

Meta