constcat icon indicating copy to clipboard operation
constcat copied to clipboard

🐱concat! with support for const variables and expressions

Results 3 constcat issues
Sort by recently updated
recently updated
newest added

Currently it produces this error when attempting to use [Associated Constants](https://doc.rust-lang.org/reference/items/associated-items.html#associated-constants): ``` error[E0401]: can't use generic parameters from outer function --> src/sync.rs:284:47 | 282 | pub fn get_updated(db: &rusqlite::Connection) ->...

feature

Although the `concat!` macro seems to work fine on char literals (`concat!('h', 'e', 'l', 'l', 'o')`), it won't seem to accept a const char. Example: ```rs use constcat::concat; const MARK:...

feature

I looked at the internals and was wondering if `concat_slices` can't be a const function instead. I took inspiration from the "internal" `concat` function: ```rust enum ConcatError { LenGreaterThanSum, LenLesserThanSum,...

feature