From b526e885bebc13be9d2737c52f3a64470ce9fd7c Mon Sep 17 00:00:00 2001 From: toge Date: Fri, 22 Mar 2024 16:05:44 +0900 Subject: [PATCH 1/2] Add fast_io (faster input/output library) (#1521) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 301d1f5a2..3399ff78f 100644 --- a/README.md +++ b/README.md @@ -1151,6 +1151,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny * [emio](https://github.com/Viatorus/emio) - A safe and fast high-level and low-level character input/output library. [MIT] * [faker-cxx](https://github.com/cieslarmichal/faker-cxx) - C++20 Faker library for generating fake (but realistic) data for testing and development. [MIT] * [FastFormat](http://www.fastformat.org) - Fast, Safe C++ Formatting inspired by log4j and Pantheios. [Simplified BSD] +* [fast_io](https://github.com/cppfastio/fast_io) - Significantly faster input/output for C++20. [MIT] * [fccf](https://github.com/p-ranav/fccf) - A command-line tool that recursively searches a directory to find C/C++ source code matching a search string. [MIT] * [{fmt}](https://github.com/fmtlib/fmt) :zap: - Small, safe and fast formatting library for C++. [Simplified BSD] [website](https://fmt.dev) * [gcc-poison](https://github.com/leafsr/gcc-poison) - A simple header file for developers to ban unsafe C/C++ functions from applications. From 36855fbf2a5eeced5de2e86e29c1cf79ee7400d3 Mon Sep 17 00:00:00 2001 From: toge Date: Sat, 23 Mar 2024 20:30:51 +0900 Subject: [PATCH 2/2] dynamic_bitset: update description, add website (#1522) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3399ff78f..97e7ba4c0 100644 --- a/README.md +++ b/README.md @@ -346,7 +346,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny ## Containers * [C++ B-tree](https://github.com/algorithm-ninja/cpp-btree) - A template library that implements ordered in-memory containers based on a B-tree data structure. [Apache2] -* [dynamic_bitset](https://github.com/pinam45/dynamic_bitset) - A C++17 header-only dynamic bitset. [MIT] +* [dynamic_bitset](https://github.com/pinam45/dynamic_bitset) - Simple Useful Libraries: C++17/20 header-only dynamic bitset. [MIT] [website](https://pinam45.github.io/dynamic_bitset/) * [fixed-containers](https://github.com/teslamotors/fixed-containers) - Header-only C++20 library that provides fixed capacity constexpr containers. [MIT] * [flat_hash_map](https://github.com/skarupke/flat_hash_map) - A very fast flat hashtable with Fibonacci hashing. * [frozen](https://github.com/serge-sans-paille/frozen) - a header-only, constexpr alternative to gperf for C++14 users. [Apache-2.0]