-
I'm using v30.0.1 but I believe this is true for the latest.
```cs
using var writer = new StreamWriter(_csvStream, Encoding.Default, BufferSize, true);
using var csvWriter = new CsvWriter(writer,…
-
proto workflow.
[digital-in-timestamping.zip](https://github.com/user-attachments/files/17592049/digital-in-timestamping.zip)
Is there a way to programatically save an output that is (17262899, Pi…
-
The `CsvWriter.WriteRecordsAsync` overload for `IAsyncEnumerable` creates an `IAsyncEnumerator` but does not dispose implementations not implementing `IDisposable`. When using EF Core with streaming r…
-
Right now we are doing custom splits and joins on commas everywhere. Which mostly works, but means that users cannot, for example, send a message with a date field and then format that date to "May …
-
Changes made as part of the "Make CSVWriter.write(row:_) generic to accept any Sequence by @bouk in https://github.com/yaslab/CSV.swift/pull/113" change cause issues with the Swift Compiler.
The b…
-
Do we still need it? It indeed has performance issues. See PR #90.
-
simpleflatmapper.version:8.2.3
```java
import lombok.Data;
import org.simpleflatmapper.map.annotation.Column;
@Data
public class GenGrid {
@Column("gird_x")
private int gridX;
…
-
```
StringWriter sw = new StringWriter();
CSVWriter csvWriter = new CSVWriterBuilder(sw)
.entryConverter(new MyConverter()).strategy(
new CSVStrategy('\t', '\"', '#', false, true)).build();
//Add t…
-
```
StringWriter sw = new StringWriter();
CSVWriter csvWriter = new CSVWriterBuilder(sw)
.entryConverter(new MyConverter()).strategy(
new CSVStrategy('\t', '\"', '#', false, true)).build();
//Add t…
-
Taking the code sample below, the maximum sample is always below 5.0.
```
use kernel_density_estimation::prelude::*;
fn main() {
let observations: Vec = vec![4.99,5.0,5.01];
…