2009-02-12 23:13:16 -05:00
|
|
|
! Copyright (C) 2009 Jason W. Merrill.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: kernel parser words effects accessors sequences
|
|
|
|
math.ranges ;
|
|
|
|
|
|
|
|
IN: math.derivatives.syntax
|
|
|
|
|
2009-03-21 02:27:50 -04:00
|
|
|
SYNTAX: DERIVATIVE: scan-object dup stack-effect in>> length [1,b]
|
2009-02-12 23:13:16 -05:00
|
|
|
[ drop scan-object ] map
|
2009-03-21 02:27:50 -04:00
|
|
|
"derivative" set-word-prop ;
|