diff --git a/basis/compiler/cfg/linear-scan/allocation/spilling/spilling.factor b/basis/compiler/cfg/linear-scan/allocation/spilling/spilling.factor index 8b4dde59da..ec4fe02cfa 100644 --- a/basis/compiler/cfg/linear-scan/allocation/spilling/spilling.factor +++ b/basis/compiler/cfg/linear-scan/allocation/spilling/spilling.factor @@ -103,7 +103,7 @@ ERROR: bad-live-ranges interval ; ! most one) are split and spilled and removed from the inactive ! set. new vreg>> active-intervals-for [ [ reg>> reg = ] find swap dup ] keep - '[ _ delete-nth new start>> spill ] [ 2drop ] if ; + '[ _ remove-nth! drop new start>> spill ] [ 2drop ] if ; :: spill-intersecting-inactive ( new reg -- ) ! Any inactive intervals using 'reg' are split and spilled @@ -141,4 +141,4 @@ ERROR: bad-live-ranges interval ; { [ 2dup spill-new? ] [ spill-new ] } { [ 2dup register-available? ] [ spill-available ] } [ spill-partially-available ] - } cond ; \ No newline at end of file + } cond ; diff --git a/basis/random/random-docs.factor b/basis/random/random-docs.factor index 59df4f6e27..788a6e700a 100755 --- a/basis/random/random-docs.factor +++ b/basis/random/random-docs.factor @@ -96,7 +96,7 @@ HELP: delete-random { $values { "seq" sequence } { "elt" object } } -{ $description "Deletes a random number from a sequence using " { $link delete-nth } " and returns the deleted object." } ; +{ $description "Deletes a random number from a sequence using " { $link remove-nth! } " and returns the deleted object." } ; ARTICLE: "random-protocol" "Random protocol" "A random number generator must implement one of these two words:" diff --git a/basis/random/random.factor b/basis/random/random.factor index 197c232404..0e7a0cc3f1 100755 --- a/basis/random/random.factor +++ b/basis/random/random.factor @@ -82,7 +82,7 @@ PRIVATE> '[ _ dup random _ _ next-sample ] replicate ; : delete-random ( seq -- elt ) - [ length random-integer ] keep [ nth ] 2keep delete-nth ; + [ length random-integer ] keep [ nth ] 2keep remove-nth! drop ; : with-random ( tuple quot -- ) random-generator swap with-variable ; inline diff --git a/basis/ui/gadgets/tracks/tracks.factor b/basis/ui/gadgets/tracks/tracks.factor index 4bccab8c98..387f41a6a4 100644 --- a/basis/ui/gadgets/tracks/tracks.factor +++ b/basis/ui/gadgets/tracks/tracks.factor @@ -61,7 +61,7 @@ PRIVATE> pick sizes>> push add-gadget ; M: track remove-gadget - [ [ children>> index ] [ sizes>> ] bi delete-nth ] + [ [ children>> index ] [ sizes>> ] bi remove-nth! drop ] [ call-next-method ] 2bi ; : clear-track ( track -- ) [ sizes>> delete-all ] [ clear-gadget ] bi ; diff --git a/basis/ui/ui.factor b/basis/ui/ui.factor index aa3c549cf0..6de303089e 100644 --- a/basis/ui/ui.factor +++ b/basis/ui/ui.factor @@ -34,7 +34,7 @@ SYMBOL: windows : raised-window ( world -- ) windows get-global [ [ second eq? ] with find drop ] keep - [ nth ] [ delete-nth ] [ nip ] 2tri push ; + [ nth ] [ remove-nth! drop ] [ nip ] 2tri push ; : focus-gestures ( new old -- ) drop-prefix diff --git a/basis/xml/data/data.factor b/basis/xml/data/data.factor index 6cd975d42d..419dfbba53 100644 --- a/basis/xml/data/data.factor +++ b/basis/xml/data/data.factor @@ -66,7 +66,7 @@ M: attrs clear-assoc f >>alist drop ; M: attrs delete-at [ nip ] [ attr@ drop ] 2bi - [ swap alist>> delete-nth ] [ drop ] if* ; + [ swap alist>> remove-nth! drop ] [ drop ] if* ; M: attrs clone alist>> clone ; diff --git a/core/assocs/assocs-docs.factor b/core/assocs/assocs-docs.factor index 22556ef94c..dd8f65c063 100755 --- a/core/assocs/assocs-docs.factor +++ b/core/assocs/assocs-docs.factor @@ -28,7 +28,7 @@ ARTICLE: "enums" "Enumerations" HELP: enum { $class-description "An associative structure which wraps a sequence and maps integers to the corresponding elements of the sequence." $nl -"Enumerations are mutable; note that deleting a key calls " { $link delete-nth } ", which results in all subsequent elements being shifted down." } ; +"Enumerations are mutable; note that deleting a key calls " { $link remove-nth! } ", which results in all subsequent elements being shifted down." } ; HELP: { $values { "seq" sequence } { "enum" enum } } diff --git a/core/assocs/assocs.factor b/core/assocs/assocs.factor index 109ef125e3..4c74ad796e 100755 --- a/core/assocs/assocs.factor +++ b/core/assocs/assocs.factor @@ -195,7 +195,7 @@ M: sequence clear-assoc delete-all ; inline M: sequence delete-at [ nip ] [ search-alist nip ] 2bi - [ swap delete-nth ] [ drop ] if* ; + [ swap remove-nth! drop ] [ drop ] if* ; M: sequence assoc-size length ; inline @@ -224,7 +224,7 @@ M: enum at* M: enum set-at seq>> set-nth ; inline -M: enum delete-at seq>> delete-nth ; inline +M: enum delete-at seq>> remove-nth! drop ; inline M: enum >alist ( enum -- alist ) seq>> [ length ] keep zip ; inline diff --git a/core/classes/algebra/algebra.factor b/core/classes/algebra/algebra.factor index 2d67403f94..afaae444bc 100755 --- a/core/classes/algebra/algebra.factor +++ b/core/classes/algebra/algebra.factor @@ -211,7 +211,7 @@ ERROR: topological-sort-failed ; : sort-classes ( seq -- newseq ) [ name>> ] sort-with >vector [ dup empty? not ] - [ dup largest-class [ over delete-nth ] dip ] + [ dup largest-class [ over remove-nth! drop ] dip ] produce nip ; : smallest-class ( classes -- class/f ) diff --git a/core/sequences/sequences-docs.factor b/core/sequences/sequences-docs.factor index 5a301256b0..c156d9e4c3 100755 --- a/core/sequences/sequences-docs.factor +++ b/core/sequences/sequences-docs.factor @@ -503,8 +503,8 @@ HELP: delq { $notes "This word uses identity comparison (" { $link eq? } ")." } { $side-effects "seq" } ; -HELP: delete-nth -{ $values { "n" "a non-negative integer" } { "seq" "a resizable mutable sequence" } } +HELP: remove-nth! +{ $values { "n" "a non-negative integer" } { "seq" "a resizable mutable sequence" } { "seq" "a resizable mutable sequence" } } { $description "Removes the " { $snippet "n" } "th element from the sequence, shifting all other elements down and reducing its length by one." } { $side-effects "seq" } ; @@ -861,7 +861,7 @@ HELP: tail? { $values { "seq" sequence } { "end" sequence } { "?" "a boolean" } } { $description "Tests if " { $snippet "seq" } " ends with " { $snippet "end" } ". If " { $snippet "end" } " is longer than " { $snippet "seq" } ", this word outputs " { $link f } "." } ; -{ remove remove-nth remq delq remove! delete-nth } related-words +{ remove remove-nth remq delq remove! remove-nth! } related-words HELP: cut-slice { $values { "seq" sequence } { "n" "a non-negative integer" } { "before-slice" sequence } { "after-slice" "a slice" } } @@ -1595,7 +1595,7 @@ ARTICLE: "sequences-destructive" "Destructive operations" { $subsections remove! delq - delete-nth + remove-nth! delete-slice delete-all filter-here @@ -1616,7 +1616,7 @@ ARTICLE: "sequences-destructive" "Destructive operations" { { $link unclip-last } { $link pop } } { { $link remove } { $link remove! } } { { $link remq } { $link delq } } - { { $link remove-nth } { $link delete-nth } } + { { $link remove-nth } { $link remove-nth! } } { { $link reverse } { $link reverse-here } } { { $link append } { $link push-all } } { { $link map } { $link map! } } diff --git a/core/sequences/sequences-tests.factor b/core/sequences/sequences-tests.factor index 48dee92457..0acc1b7344 100644 --- a/core/sequences/sequences-tests.factor +++ b/core/sequences/sequences-tests.factor @@ -207,7 +207,7 @@ unit-test [ 10 "hi" "bye" copy ] must-fail [ V{ 1 2 3 5 6 } ] [ - 3 V{ 1 2 3 4 5 6 } clone [ delete-nth ] keep + 3 V{ 1 2 3 4 5 6 } clone remove-nth! ] unit-test ! erg's random tester found this one @@ -227,7 +227,7 @@ unit-test [ -3 10 nth ] must-fail [ 11 10 nth ] must-fail -[ -1/0. 0 delete-nth ] must-fail +[ -1/0. 0 remove-nth! ] must-fail [ "" ] [ "" [ CHAR: \s = ] trim ] unit-test [ "" ] [ "" [ CHAR: \s = ] trim-head ] unit-test [ "" ] [ "" [ CHAR: \s = ] trim-tail ] unit-test diff --git a/core/sequences/sequences.factor b/core/sequences/sequences.factor index 236d38bfd5..7876469f19 100755 --- a/core/sequences/sequences.factor +++ b/core/sequences/sequences.factor @@ -695,8 +695,8 @@ PRIVATE> : delete-slice ( from to seq -- ) check-slice [ over [ - ] dip ] dip open-slice ; -: delete-nth ( n seq -- ) - [ dup 1 + ] dip delete-slice ; +: remove-nth! ( n seq -- seq ) + [ [ dup 1 + ] dip delete-slice ] keep ; : snip ( from to seq -- head tail ) [ swap head ] [ swap tail ] bi-curry bi* ; inline diff --git a/extra/multi-methods/multi-methods.factor b/extra/multi-methods/multi-methods.factor index d3e1d443aa..de131df3c6 100755 --- a/extra/multi-methods/multi-methods.factor +++ b/extra/multi-methods/multi-methods.factor @@ -81,7 +81,7 @@ SYMBOL: total : topological-sort ( seq quot -- newseq ) [ >vector [ dup empty? not ] ] dip - [ dupd maximal-element [ over delete-nth ] dip ] curry + [ dupd maximal-element [ over remove-nth! drop ] dip ] curry produce nip ; inline : classes< ( seq1 seq2 -- lt/eq/gt ) diff --git a/misc/vim/syntax/factor.vim b/misc/vim/syntax/factor.vim index 80d9287352..8ba1e00052 100644 --- a/misc/vim/syntax/factor.vim +++ b/misc/vim/syntax/factor.vim @@ -53,7 +53,7 @@ syn keyword factorKeyword or tuck 2bi 2tri while wrapper nip 4dip wrapper? bi* c syn keyword factorKeyword ?at assoc? assoc-clone-like assoc= delete-at* assoc-partition extract-keys new-assoc value? assoc-size map>assoc push-at assoc-like key? assoc-intersect assoc-refine update assoc-union assoc-combine at* assoc-empty? at+ set-at assoc-all? assoc-subset? assoc-hashcode change-at assoc-each assoc-diff zip values value-at rename-at inc-at enum? at cache assoc>map assoc assoc-map enum value-at* remove-all assoc-map-as >alist assoc-filter-as substitute-here clear-assoc assoc-stack maybe-set-at substitute assoc-filter 2cache delete-at assoc-find keys assoc-any? unzip syn keyword factorKeyword case execute-effect no-cond no-case? 3cleave>quot 2cleave cond>quot wrong-values? no-cond? cleave>quot no-case case>quot 3cleave wrong-values to-fixed-point alist>quot case-find cond cleave call-effect 2cleave>quot recursive-hashcode linear-case-quot spread spread>quot syn keyword factorKeyword byte-array>bignum sgn >bignum next-float number= each-integer next-power-of-2 ?1+ fp-special? imaginary-part mod recip float>bits rational >float number? 2^ bignum? integer fixnum? neg fixnum sq bignum fp-snan? fp-infinity? denominator (all-integers?) times find-last-integer (each-integer) bit? * + fp-bitwise= - fp-qnan? / power-of-2? >= bitand find-integer complex < log2 > integer? real number bits>double double>bits bitor 2/ zero? rem fp-nan-payload all-integers? (find-integer) real-part prev-float align bits>float float? shift float fp-nan? abs bitxor ratio? even? <= /mod odd? >integer ratio rational? bitnot real? >fixnum complex? /i numerator /f -syn keyword factorKeyword append assert-sequence= find-last-from trim-head-slice clone-like 3sequence assert-sequence? map-as filter-here last-index-from reversed index-from cut* pad-tail (indices) concat-as remq but-last snip trim-tail nths nth 2pusher sequence slice? partition remove-nth tail-slice empty? tail* if-empty find-from virtual-sequence? member? set-length delq drop-prefix unclip iota unclip-last-slice bounds-error? sequence-hashcode-step map start midpoint@ rest-slice prepend fourth sift delete sigma new-sequence follow like delete-nth first4 1sequence reverse slice unless-empty padding virtual@ repetition? set-last index 4sequence max-length set-second immutable-sequence first2 first3 replicate-as reduce-index unclip-slice supremum insert-nth trim-tail-slice tail 3append short count suffix concat flip filter sum immutable? 2sequence map-integers delete-all start* indices snip-slice check-slice sequence? head map-find reduce append-as reverse-here sequence= halves collapse-slice interleave 2map binary-reduce virtual-seq slice-error? product bounds-check? bounds-check harvest immutable find produce remove pad-head last replicate set-fourth shorten reversed? map-find-last 3map-as 2unclip-slice shorter? 3map find-last head-slice pop* 2map-as tail-slice* but-last-slice 2map-reduce iota? accumulate each pusher cut-slice new-resizable each-index head-slice* 2reverse-each sequence-hashcode memq? pop set-nth ?nth second map! join when-empty accumulator immutable-sequence? all? 3append-as virtual-sequence subseq? push-either new-like length last-index push-if 2all? lengthen assert-sequence copy map-reduce move third first 3each tail? set-first prefix bounds-error any? trim-slice exchange surround 2reduce cut change-nth min-length set-third produce-as push-all head? delete-slice rest sum-lengths 2each head* infimum glue slice-error subseq replace-slice push repetition map-index trim-head unclip-last mismatch trim +syn keyword factorKeyword append assert-sequence= find-last-from trim-head-slice clone-like 3sequence assert-sequence? map-as filter-here last-index-from reversed index-from cut* pad-tail (indices) concat-as remq but-last snip trim-tail nths nth 2pusher sequence slice? partition remove-nth tail-slice empty? tail* if-empty find-from virtual-sequence? member? set-length delq drop-prefix unclip iota unclip-last-slice bounds-error? sequence-hashcode-step map start midpoint@ rest-slice prepend fourth sift delete sigma new-sequence follow like remove-nth! first4 1sequence reverse slice unless-empty padding virtual@ repetition? set-last index 4sequence max-length set-second immutable-sequence first2 first3 replicate-as reduce-index unclip-slice supremum insert-nth trim-tail-slice tail 3append short count suffix concat flip filter sum immutable? 2sequence map-integers delete-all start* indices snip-slice check-slice sequence? head map-find reduce append-as reverse-here sequence= halves collapse-slice interleave 2map binary-reduce virtual-seq slice-error? product bounds-check? bounds-check harvest immutable find produce remove pad-head last replicate set-fourth shorten reversed? map-find-last 3map-as 2unclip-slice shorter? 3map find-last head-slice pop* 2map-as tail-slice* but-last-slice 2map-reduce iota? accumulate each pusher cut-slice new-resizable each-index head-slice* 2reverse-each sequence-hashcode memq? pop set-nth ?nth second map! join when-empty accumulator immutable-sequence? all? 3append-as virtual-sequence subseq? push-either new-like length last-index push-if 2all? lengthen assert-sequence copy map-reduce move third first 3each tail? set-first prefix bounds-error any? trim-slice exchange surround 2reduce cut change-nth min-length set-third produce-as push-all head? delete-slice rest sum-lengths 2each head* infimum glue slice-error subseq replace-slice push repetition map-index trim-head unclip-last mismatch trim syn keyword factorKeyword global +@ change set-namestack change-global init-namespaces on off set-global namespace set with-scope bind with-variable inc dec counter initialize namestack get get-global make-assoc syn keyword factorKeyword 2array 3array pair >array 1array 4array pair? array resize-array array? syn keyword factorKeyword +character+ bad-seek-type? readln stream-seek read print with-output-stream contents write1 stream-write1 stream-copy stream-element-type with-input-stream stream-print stream-read stream-contents bl seek-output bad-seek-type nl stream-nl write flush stream-lines +byte+ stream-flush read1 seek-absolute? stream-read1 lines stream-readln stream-read-until each-line seek-end with-output-stream* seek-absolute with-streams seek-input seek-relative? input-stream stream-write read-partial seek-end? seek-relative error-stream read-until with-input-stream* with-streams* each-block output-stream stream-read-partial