Docs.rs
tylisp-0.1.0
tylisp 0.1.0
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
crates.io
Source
Owners
e2-71828
Dependencies
frunk ^0.3.1
normal
optional
typenum ^1.12.0
normal
typenum-uuid ^0.1.0
normal
Versions
20.25%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
tylisp
0.1.0
Eval
List
Required Associated Types
Result
Implementors
In tylisp::
engine
tylisp
::
engine
Trait
EvalList
Copy item path
Source
pub trait EvalList { type
Result
; }
Expand description
A list where every item is individually evaluable
Required Associated Types
§
Source
type
Result
Implementors
§
Source
§
impl
EvalList
for
HNil
Source
§
type
Result
=
HNil
Source
§
impl<H:
Eval
, T:
EvalList
>
EvalList
for
HCons
<H, T>
Source
§
type
Result
=
HCons
<<H as
Eval
>::
Result
, <T as
EvalList
>::
Result
>