alpha
Login
or
Join now
urschrei.eurosky.social
/
cvmcount
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Rust implementation of the CVM algorithm for counting distinct elements in a stream
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
We DO want a BufReader
author
Stephan Hügel
date
2 years ago
(May 23, 2024, 12:16 AM +0100)
commit
1169b3cf
1169b3cf9502f5c718ea54be0ec0d8318cde8d66
parent
6461d19f
6461d19f1cfa677341ed3d918350f74510b473cd
-1
1 changed file
Expand all
Collapse all
Unified
Split
src
main.rs
-1
src/main.rs
Reviewed
···
11
11
where
12
12
P: AsRef<Path>,
13
13
{
14
14
-
// no need to use a BufReader since we want the entire file
15
14
let f = File::open(filename).expect("Couldn't read from file");
16
15
BufReader::new(f)
17
16
}