#[unsafe(no_mangle)]pub unsafe extern "C" fn tx_query_double_attribute(
doc: *const TxDocument,
el: TxNodeId,
name: *const c_char,
value: *mut c_double,
) -> TxErrorExpand description
Queries a double (f64) attribute value.
On success, writes the value to *value and returns TxSuccess.
ยงSafety
docmust be a valid, non-null pointer to aTxDocument.namemust be a valid, non-null pointer to a null-terminated UTF-8 string.valuemust be a valid, non-null pointer to ac_double.