rust-bitcoin-unsafe-fast/primitives/src
Martin Habovstiak 0567e6fe1d Put `#[inline]` on most `Script{Buf}` methods
These methods are either newtype casts that should compile to no-ops or
directly calling into some other function with at most some pointer
adjustments. As such making them `#[inline]` is definitely benefitial.
There are also methods that check length and then call some other
function. These are also worth inlining since the length could be known
at compile time and the check could be eliminated.
2025-02-20 16:18:21 +01:00
..
locktime Remove rust-ordered dependency 2025-02-18 13:36:07 +11:00
script Put `#[inline]` on most `Script{Buf}` methods 2025-02-20 16:18:21 +01:00
block.rs Add a test for Header size 2025-02-06 14:28:22 +00:00
lib.rs Add missing re-exports to primitives crate root 2025-02-07 08:01:46 +00:00
merkle_tree.rs Remove hex string trait bounds from GeneralHash 2024-11-13 14:01:13 +11:00
opcodes.rs Add test to opcodes 2025-02-06 16:30:52 +00:00
pow.rs Add tests to CompactTarget 2025-02-06 17:06:41 +00:00
sequence.rs Test sequence formatting 2025-02-07 17:50:45 +00:00
taproot.rs Remove hex string trait bounds from GeneralHash 2024-11-13 14:01:13 +11:00
transaction.rs 2025-02-16 automated rustfmt nightly 2025-02-16 01:21:38 +00:00
witness.rs Merge rust-bitcoin/rust-bitcoin#4061: Make Debug representation of Witness to be slice of hex-encoded bytes strings to improve readability 2025-02-17 23:21:39 +00:00