xrcs excluded

This commit is contained in:
AF 2023-03-12 10:43:58 +00:00
parent bd349c96e8
commit 28f53fb698
2 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
pub mod core;
pub mod func;
#[cfg(test)]
mod xrcs;

View File

@ -1,5 +1,6 @@
/// Solutions to some exercises by Alisa Feistel.
/// 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)]
mod tests {
fn bind<T, F: FnOnce(T) -> Option<T>>(f: F, fa: Option<T>) -> Option<T> {