Skip to content

Commit

Permalink
Line-wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
pkhuong committed Jan 13, 2012
1 parent 3654464 commit b0f03b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions support.lisp
Expand Up @@ -61,7 +61,8 @@
(defun power-of-two-p (x)
(= 1 (logcount x)))

(declaim (ftype (function (sequence &optional size) (values complex-sample-array &optional))
(declaim (ftype (function (sequence &optional size)
(values complex-sample-array &optional))
complex-samplify))
(defun complex-samplify (vec &optional (size (length vec)))
(etypecase vec
Expand Down Expand Up @@ -91,7 +92,8 @@
(coerce x 'complex-sample))
vec))))

(declaim (ftype (function (sequence &optional size) (values real-sample-array &optional))
(declaim (ftype (function (sequence &optional size)
(values real-sample-array &optional))
real-samplify))
(defun real-samplify (vec &optional (size (length vec)))
(etypecase vec
Expand Down

0 comments on commit b0f03b4

Please sign in to comment.