摘要:
warning: LF will be replaced by CRLF in about/index.html.The file will have its original line endings in your working directory 原因是存在符号转义问题;windows的换行 阅读全文
摘要:
collect nth函数 let a = [1, 2, 3]; let mut iter = a.iter(); assert_eq!(iter.nth(1), Some(&2)); assert_eq!(iter.nth(1), None); let a = [1, 2, 3]; assert_ 阅读全文