MCPcopy Create free account
hub / github.com/apache/datafusion / csv_line

Function csv_line

datafusion/core/src/datasource/file_format/csv.rs:1326–1329  ·  view source on GitHub ↗
(line_number: usize)

Source from the content-addressed store, hash-verified

1324 }
1325
1326 fn csv_line(line_number: usize) -> Bytes {
1327 let (int_value, float_value, bool_value, char_value) = csv_values(line_number);
1328 format!("{int_value},{float_value},{bool_value},{char_value}\n").into()
1329 }
1330
1331 fn csv_values(line_number: usize) -> (i32, f64, bool, String) {
1332 let int_value = line_number as i32;

Callers 1

nextMethod · 0.85

Calls 2

csv_valuesFunction · 0.85
intoMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…