MCPcopy Create free account
hub / github.com/acking-you/static_flow / nullable_string_value

Function nullable_string_value

crates/store/src/comments_store.rs:1723–1729  ·  view source on GitHub ↗
(array: &StringArray, idx: usize)

Source from the content-addressed store, hash-verified

1721}
1722
1723fn nullable_string_value(array: &StringArray, idx: usize) -> Option<String> {
1724 if array.is_null(idx) {
1725 None
1726 } else {
1727 Some(array.value(idx).to_string())
1728 }
1729}
1730
1731fn nullable_ts_value(array: &TimestampMillisecondArray, idx: usize) -> Option<i64> {
1732 if array.is_null(idx) {

Callers 4

query_comment_tasksFunction · 0.85
query_published_commentsFunction · 0.85
query_comment_audit_logsFunction · 0.85
query_comment_ai_runsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected