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

Function nullable_str

crates/store/src/article_request_store.rs:939–945  ·  view source on GitHub ↗
(arr: &StringArray, i: usize)

Source from the content-addressed store, hash-verified

937}
938
939fn nullable_str(arr: &StringArray, i: usize) -> Option<String> {
940 if arr.is_null(i) {
941 None
942 } else {
943 Some(arr.value(i).to_string())
944 }
945}
946
947fn nullable_i32(arr: &Int32Array, i: usize) -> Option<i32> {
948 if arr.is_null(i) {

Callers 2

query_requestsFunction · 0.70
query_ai_runsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected