Skip to content

sigmaSd/konster

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

konster

This crate exposes const equivalents of standard library types that are usable on stable.

   use konster::kstr::KStr;

   const _: () = {
       let mut str = KStr::<20>::new();
       str = str.push(4);
       let (str, val) = match str.pop() {
            Some((str,val)) => (str, val),
            _ => unreachable!(),
       };
       if !str.is_empty() {
            panic!("Str is not empty");
       }
   };

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages