xrcs excluded
This commit is contained in:
parent
bd349c96e8
commit
28f53fb698
@ -1,3 +1,4 @@
|
|||||||
pub mod core;
|
pub mod core;
|
||||||
pub mod func;
|
pub mod func;
|
||||||
|
#[cfg(test)]
|
||||||
mod xrcs;
|
mod xrcs;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/// Solutions to some exercises by Alisa Feistel.
|
/// Solutions to some exercises by Alisa Feistel.
|
||||||
/// Included here for their relevance to the whole Monad theme.
|
/// Included here for their relevance to the whole Monad theme.
|
||||||
|
/// Also, Alisa is too lazy to put them in a separate project for now.
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
fn bind<T, F: FnOnce(T) -> Option<T>>(f: F, fa: Option<T>) -> Option<T> {
|
fn bind<T, F: FnOnce(T) -> Option<T>>(f: F, fa: Option<T>) -> Option<T> {
|
||||||
|
Loading…
Reference in New Issue
Block a user