Service | SSL | status | Response Type | Allowed methods | Allowed headers |
---|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::rc::Rc; | |
trait HKT<U> { | |
type C; // Current type | |
type T; // Type with C swapped with U | |
} | |
macro_rules! derive_hkt { | |
($t:ident) => { | |
impl<T, U> HKT<U> for $t<T> { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Nameses enables named sessions. | |
;; Nameses is largely based on my-desktop.el by Scott Frazer | |
;; Modification by Jannis Teunissen | |
;; Version 0.02 - 21 Nov 2014 (added extra check) | |
;;; *** Usage *** | |
;; Note: if 'name' is not given, you'll be asked for a name | |
;; | |
;; (nameses-load prefix &optional name) -> without prefix: load session | |
;; (nameses-load prefix &optional name) -> with prefix: save session |