Skip to content

Instantly share code, notes, and snippets.

View Centril's full-sized avatar
🏠
Working from home

Mazdak Farrokhzad Centril

🏠
Working from home
  • Sweden
View GitHub Profile
@Centril
Centril / unnamed-structs.md
Created May 5, 2018 20:22
Unnamed structs

Unnamed structs

Nominal type equivalence

Let ≡n be the equivalence class of nominally equivalent types. A ≡n B denotes that A and B are nominally the same type.

{ foo: T, bar: U }n { bar: U, foo: T } // Order does not matter.
@Centril
Centril / keyword_policy.md
Created April 29, 2018 19:34
Keyword policy permalink

Keyword policy

Upsides of proper keywords (with no availability on old editions)

  • Avoid monotonically increasing tech debt
    • In particular, if contextual keywords accumulate over time, their grammatical interactions are going to get continually trickier
  • Forward-compatible with introducing contextual keywords on older editions
  • Forward-compatible with future uses that can’t be contextual
    • In case we decide 1.5 year hence that we want to do something new with the keyword.
  • Arguably can give better error messages
  • Cleaner
@Centril
Centril / constraint-kinds.md
Created March 5, 2018 20:29 — forked from withoutboats/constraint-kinds.md
Constraint Kinds in Rust

Notes on adding Constraint Kinds to Rust

Background: Constraint Kinds

a trait can be thought of as a type operator generating a "constraint" - what in Rust would usually be called a bound. For example:

// Declares a new item `Foo` with kind `type -> constraint`
trait Foo { }
@Centril
Centril / const_trait_system.rs
Created December 4, 2017 18:55
Const Trait System
//******************************************************************************
// "const_trait_system"
//******************************************************************************
/*
Dependency DAG of proposal:
[A, B] -> []
[C] -> [B] and/or [A] -- NOTE: C is moot without B or A.
[D, E] -> [B]
@Centril
Centril / data.rs
Created September 17, 2017 21:04
Rust: A write up on various pointers for str.
fn main() {
use std::mem::{size_of, size_of_val};
let susize = size_of::<usize>();
// usize is size_t.
// "hello" is in static memory, x is on the stack and like: (char*, usize).
// &'static str is a fat pointer.
// It is not null terminated.
@Centril
Centril / combinators.hs
Created January 13, 2017 21:35
useful higher order combinators in haskell
(.$) :: (t -> b -> c) -> (a -> b) -> t -> a -> c
(.$) f g a = f a . g
infixr 8 .$
-- | '.|': Compose an unary function with a binary function.
-- from: http://hackage.haskell.org/package/pointless-fun-1.1.0.5/docs/Data-Function-Pointless.html
(.|) :: (b -> c) -> (t -> a -> b) -> t -> a -> c
(.|) f g a = f . g a
infixr 7 .|
@Centril
Centril / keybase.md
Created January 9, 2017 08:32
keybase.md

Keybase proof

I hereby claim:

  • I am Centril on github.
  • I am centril (https://keybase.io/centril) on keybase.
  • I have a public key whose fingerprint is 17DC 71EF 7AD7 4032 4B5D 112E 818B 6F39 DE23 A081

To claim this, I am signing this object:

@Centril
Centril / stuff.rs
Created January 4, 2017 09:56
fn to_rc<T: ?Sized>(b: Box<T>) -> Rc<T>
#![feature(alloc, heap_api)]
extern crate alloc;
use std::rc::Rc;
use std::mem::{align_of, align_of_val, size_of, size_of_val};
fn to_rc<T: ?Sized>(b: Box<T>) -> Rc<T> {
// super duper undefined behavior!
struct InnerRcBox<T: ?Sized> {
strong: usize,
@Centril
Centril / str_to_enum.rs
Created December 30, 2016 11:48
str_to_enum.rs
#![feature(try_from)]
use std::str::FromStr;
use std::convert::TryFrom;
macro_rules! str_to_enum {
($typ: path, $($var: ident),+) => {
impl std::str::FromStr for $typ {
type Err = ();
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
@Centril
Centril / nom.IResult.rs
Created December 22, 2016 21:33
nom::IResult::map_rem
// For debugging purposes:
impl<I, O, E=u32> IResult<I, O, E> {
fn map_rem<R, F: FnOnce(I) -> R>(self, f: F) -> IResult<R, O, E> {
use IResult::*;
match s {
Done(i, o) => Done(f(i), o),
Error(e) => Error(e),
Incomplete(n) => Incomplete(n),
}