Lines Matching refs:nth_root
21 let rt = i.nth_root(n); in check()
170 (123 as $I).nth_root(0);
195 fn nth_root() {
215 assert_eq!($I::max_value().nth_root(bits - 1), 2);
216 assert_eq!($I::max_value().nth_root(bits), 1);
217 assert_eq!($I::min_value().nth_root(bits), -2);
218 assert_eq!(($I::min_value() + 1).nth_root(bits), -1);
231 (123 as $U).nth_root(0);
245 fn nth_root() {
256 assert_eq!($U::max_value().nth_root(bits - 1), 2);
257 assert_eq!($U::max_value().nth_root(bits), 1);