tour_of_rust VS concatenation_benchmarks-rs

Compare tour_of_rust vs concatenation_benchmarks-rs and see what are their differences.

tour_of_rust

A tour of rust's language features (by richardanaya)

concatenation_benchmarks-rs

📈 benchmarking different ways to concatenate strings in rust (by hoodie)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
tour_of_rust concatenation_benchmarks-rs
34 4
849 301
- -
7.6 0.0
about 2 months ago 6 months ago
JavaScript Rust
MIT License -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

tour_of_rust

Posts with mentions or reviews of tour_of_rust. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-11.

concatenation_benchmarks-rs

Posts with mentions or reviews of concatenation_benchmarks-rs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-02-24.
  • String concatenations benchmarks (updated)
    5 projects | /r/rust | 24 Feb 2022
    The widely quoted string concatenation benchmarks by Hendrik Sollich are 4 years old. I added a few methods and some macros from crates.io and re-ran the benches. Here are the results: 0 ns/iter (+/- 0) from_bytes 10 ns/iter (+/- 0) concat_string_macro 10 ns/iter (+/- 0) concat_strs_macro 10 ns/iter (+/- 0) mut_string_with_capacity_push_str_char 10 ns/iter (+/- 0) string_concat_macro 10 ns/iter (+/- 1) mut_string_with_capacity_push_str 14 ns/iter (+/- 0) concat_in_place_macro 19 ns/iter (+/- 10) mut_string_with_too_much_capacity_push_str 22 ns/iter (+/- 0) array_join 24 ns/iter (+/- 0) array_concat 24 ns/iter (+/- 0) array_join_long 24 ns/iter (+/- 0) mut_string_push_str 27 ns/iter (+/- 0) string_from_plus_op 27 ns/iter (+/- 0) to_string_plus_op 29 ns/iter (+/- 0) to_owned_plus_op 30 ns/iter (+/- 0) collect_from_array_to_string 34 ns/iter (+/- 0) collect_from_vec_to_string 39 ns/iter (+/- 0) mut_string_with_too_little_capacity_push_str 43 ns/iter (+/- 1) string_from_all 52 ns/iter (+/- 0) format_macro 53 ns/iter (+/- 0) format_macro_implicit_args 68 ns/iter (+/- 1) mut_string_push_string
  • Looking for feedback on an article/code on maritime data processing with RUST
    2 projects | /r/rust | 6 Feb 2022
    format!() is slow (https://github.com/hoodie/concatenation_benchmarks-rs)
  • 17 ways to concatenate strings in rust
    1 project | /r/programmingcirclejerk | 25 Apr 2021
  • Rust Language Cheat Sheet
    4 projects | news.ycombinator.com | 25 Apr 2021

What are some alternatives?

When comparing tour_of_rust and concatenation_benchmarks-rs you can also consider the following projects:

book - The Rust Programming Language

RustAISe

learnxinyminutes-docs - Code documentation written as code! How novel and totally my idea!

go - The Go programming language

Exercism - website - The codebase for Exercism's website.

concat-string - A Rust library for concatenating string slices into owned strings.

zero-to-production - Code for "Zero To Production In Rust", a book on API development using Rust.

verona - Research programming language for concurrent ownership

string_concat - A useful string concatenation macro for no_std Rust

Rustlings - :crab: Small exercises to get you used to reading and writing Rust code!

concat_strs - Rust macro for quickly building a string from components.