File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
branches/snap-stage3/src/libnum Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 0bdac78da87605f6f7f6e7924872617226b19c85
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 8138c3574fcd75c0857cf2a8e9a8f905c2774649
4
+ refs/heads/snap-stage3: 46e6e42d7a17d33da0fd13f2afd81a566ec08ceb
5
5
refs/heads/try: 28d5878c1f0465c11c8e7a3085008b0c592d48d0
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -36,10 +36,8 @@ impl<T: Clone + Num> Complex<T> {
36
36
Complex { re : re, im : im }
37
37
}
38
38
39
- /**
40
- Returns the square of the norm (since `T` doesn't necessarily
41
- have a sqrt function), i.e. `re^2 + im^2`.
42
- */
39
+ /// Returns the square of the norm (since `T` doesn't necessarily
40
+ /// have a sqrt function), i.e. `re^2 + im^2`.
43
41
#[ inline]
44
42
pub fn norm_sqr ( & self ) -> T {
45
43
self . re * self . re + self . im * self . im
You can’t perform that action at this time.
0 commit comments