Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benaryorg/rust-loop_benchmarking
a repository showing a benchmark result of the source code contained
https://github.com/benaryorg/rust-loop_benchmarking
Last synced: about 2 months ago
JSON representation
a repository showing a benchmark result of the source code contained
- Host: GitHub
- URL: https://github.com/benaryorg/rust-loop_benchmarking
- Owner: benaryorg
- Created: 2015-06-16T08:43:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-16T08:43:18.000Z (over 9 years ago)
- Last Synced: 2024-10-19T18:44:25.540Z (3 months ago)
- Language: Rust
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# What is this?
This is just a repository showing a benchmark result of the source code
contained.- Source:
`src/main.rs`
- Benchmark:
`test.txt`# What is being benchmarked?
Two loops written in the programming language [Rust](http://rust-lang.org), one
using a _while_ and a mutable integer to count and a _for_ loop using a _Range_,
both counting the same amount (0 to `1_000_000`).