This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! `as` free binary search for `RangeBounds<{Integer}>`. | |
| //! | |
| //! This code is licensed under [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0). | |
| //! | |
| //! ```cargo | |
| //! [package] | |
| //! name = "bisect" | |
| //! version = "0.0.0" | |
| //! authors = ["Ryo Yamashita <qryxip@gmail.com>"] | |
| //! edition = "2018" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! This code is licensed under [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0). | |
| //! | |
| //! ```cargo | |
| //! [package] | |
| //! name = "bash-on-atcoder" | |
| //! version = "0.0.0" | |
| //! authors = ["Ryo Yamashita <qryxip@gmail.com>"] | |
| //! edition = "2018" | |
| //! license = "CC0-1.0" | |
| //! publish = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! This code is licensed under [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0). | |
| //! | |
| //! ```cargo | |
| //! [package] | |
| //! name = "bash-on-atcoder" | |
| //! version = "0.0.0" | |
| //! authors = ["Ryo Yamashita <qryxip@gmail.com>"] | |
| //! edition = "2018" | |
| //! license = "CC0-1.0" | |
| //! publish = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! This code is licensed under [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0). | |
| //! | |
| //! ```cargo | |
| //! [package] | |
| //! name = "atcoder-cat" | |
| //! version = "0.0.0" | |
| //! authors = ["Ryo Yamashita <qryxip@gmail.com>"] | |
| //! edition = "2018" | |
| //! license = "CC0-1.0" | |
| //! publish = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! This code is licensed under [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0). | |
| //! | |
| //! ```cargo | |
| //! [package] | |
| //! name = "logger" | |
| //! version = "0.0.0" | |
| //! authors = ["Ryo Yamashita <qryxip@gmail.com>"] | |
| //! edition = "2018" | |
| //! license = "CC0-1.0" | |
| //! publish = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! ```cargo | |
| //! [package] | |
| //! name = "mimimimimi" | |
| //! version = "0.0.0" | |
| //! authors = ["Ryo Yamashita <qryxip@gmail.com>"] | |
| //! edition = "2018" | |
| //! publish = false | |
| //! | |
| //! # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| //! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bikecase | |
| //! ```cargo | |
| //! [package] | |
| //! name = "hello-world" | |
| //! version = "0.0.0" | |
| //! authors = ["Ryo Yamashita <qryxip@gmail.com>"] | |
| //! edition = "2018" | |
| //! publish = false | |
| //! | |
| //! # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! This code is licensed under [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0). | |
| //! | |
| //! ```cargo | |
| //! [package] | |
| //! name = "atcoder-submissions" | |
| //! version = "0.0.0" | |
| //! authors = ["Ryo Yamashita <qryxip@gmail.com>"] | |
| //! edition = "2018" | |
| //! publish = false | |
| //! license = "CC0-1.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// The following code is licensed under [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/). | |
| fn main() { | |
| use unchecked_slice_index::SliceExt as _; | |
| let mut xs = vec![0]; | |
| unsafe { | |
| xs.with_unchecked_indices(|mut xs| { | |
| xs[0] += 1; | |
| assert_eq!(xs[0], 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //! A cargo subcommand to list all of the "normal dependencies" in the dependency graph. | |
| //! | |
| //! Licensed under [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/). | |
| //! | |
| //! ```toml | |
| //! [package] | |
| //! edition = "2018" | |
| //! name = "cargo-normal-deps" | |
| //! version = "0.0.0" | |
| //! authors = ["Ryo Yamashita <qryxip@gmail.com>"] |