//
// Copyright (c) 2015-2019 Plausible Labs Cooperative, Inc.
// All rights reserved.
//
// HList macro implementations based on:
// https://github.com/epsilonz/shoggoth.rs
//
/// Shorthand for building an `HList` from the given elements.
///
/// # Examples
///
/// ```
/// use pl_hlist::*;
///
/// # fn main() {
/// let x: HCons<u8, HCons<u32, HNil>> = hlist!(1u8, 666u32);
/// # }
/// ```
=> ;
=> ;
=> ;
}