mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
329 B
21 lines
329 B
3 years ago
|
use crate::List::{Cons, Nil};
|
||
|
use std::cell::RefCell;
|
||
|
use std::rc::Rc;
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
enum List {
|
||
|
Cons(i32, RefCell<Rc<List>>),
|
||
|
Nil,
|
||
|
}
|
||
|
|
||
|
impl List {
|
||
|
fn tail(&self) -> Option<&RefCell<Rc<List>>> {
|
||
|
match self {
|
||
|
Cons(_, item) => Some(item),
|
||
|
Nil => None,
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|