Skip to content
View CosmicSyntax's full-sized avatar

Block or report CosmicSyntax

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. nvim nvim Public

    My Vim / Neovim configuration

    Lua

  2. cosmicsyntax.github.io cosmicsyntax.github.io Public

    Personal Website

    HTML

  3. RubyRust RubyRust Public

    Ruby calling Rust through the C ABI

    Ruby

  4. "Mixed" data type in array through c... "Mixed" data type in array through const generics
    1
    pub trait All {
    2
        fn print(&self);
    3
    }
    4
    
                  
    5
    pub struct Dynamic<'a, const SIZE: usize>(pub [&'a dyn All; SIZE]);