Skip to content
View CosmicSyntax's full-sized avatar

Block or report CosmicSyntax

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
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]);