From 0aa4000c462b81e5518568ae0dd4ef1b17289b9f Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sun, 14 Sep 2008 09:45:26 -0500 Subject: [PATCH 01/12] more docs --- core/sequences/sequences-docs.factor | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/core/sequences/sequences-docs.factor b/core/sequences/sequences-docs.factor index 5c0dbf7985..6207b5beb1 100755 --- a/core/sequences/sequences-docs.factor +++ b/core/sequences/sequences-docs.factor @@ -65,7 +65,8 @@ ARTICLE: "sequences-add-remove" "Adding and removing sequence elements" { $subsection prefix } { $subsection suffix } "Removing elements:" -{ $subsection remove } ; +{ $subsection remove } +{ $subsection remove-nth } ; ARTICLE: "sequences-reshape" "Reshaping sequences" "A " { $emphasis "repetition" } " is a virtual sequence consisting of a single element repeated multiple times:" @@ -124,6 +125,7 @@ ARTICLE: "sequences-slices" "Subsequences and slices" ARTICLE: "sequences-combinators" "Sequence combinators" "Iteration:" { $subsection each } +{ $subsection each-index } { $subsection reduce } { $subsection interleave } { $subsection replicate } @@ -131,6 +133,7 @@ ARTICLE: "sequences-combinators" "Sequence combinators" "Mapping:" { $subsection map } { $subsection map-as } +{ $subsection map-index } { $subsection accumulate } { $subsection produce } "Filtering:" @@ -533,6 +536,24 @@ HELP: map-as "Note that " { $link map } " could not be used here, because it would create another string to hold results, and one-element strings cannot themselves be elements of strings." } ; +HELP: each-index +{ $values + { "seq" sequence } { "quot" quotation } } +{ $description "Calls the quotation with the element of the sequence and its index on the stack, with the index on the top of the stack." } +{ $examples { $example "USING: sequences prettyprint math ;" +"{ 10 20 30 } [ + . ] each-index" +"10\n21\n32" +} } ; + +HELP: map-index +{ $values + { "seq" sequence } { "quot" quotation } } +{ $description "Calls the quotation with the element of the sequence and its index on the stack, with the index on the top of the stack. Collects the outputs of the quotation and outputs them in a sequence of the same type as the input sequence." } +{ $examples { $example "USING: sequences prettyprint math ;" +"{ 10 20 30 } [ + ] map-index ." +"{ 10 21 32 }" +} } ; + HELP: change-nth { $values { "i" "a non-negative integer" } { "seq" "a mutable sequence" } { "quot" "a quotation with stack effect " { $snippet "( elt -- newelt )" } } } { $description "Applies the quotation to the " { $snippet "i" } "th element of the sequence, storing the result back into the sequence." } From e501a411fed86519d49c9f25d405046d671c6d71 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sun, 14 Sep 2008 22:28:54 -0500 Subject: [PATCH 02/12] add about, article --- basis/channels/channels-docs.factor | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/basis/channels/channels-docs.factor b/basis/channels/channels-docs.factor index 521a4a4ae2..b6ddc299e5 100644 --- a/basis/channels/channels-docs.factor +++ b/basis/channels/channels-docs.factor @@ -33,3 +33,14 @@ HELP: from " It will block the calling thread until there is data in the channel." } { $see-also to } ; + +ARTICLE: "channels" "Channels" +"The " { $vocab-link "channels" } " vocabulary provides a simple abstraction to send and receive objects." $nl +"Opening a channel:" +{ $subsection } +"Sending a message:" +{ $subsection to } +"Receiving a message:" +{ $subsection from } ; + +ABOUT: "channels" From 7d418ec3de8c6433d62b054b72d68a08c19be8d6 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sun, 14 Sep 2008 23:27:37 -0500 Subject: [PATCH 03/12] add some docs to circular --- basis/circular/circular-docs.factor | 58 +++++++++++++++++++++++++++++ basis/circular/circular.factor | 4 ++ 2 files changed, 62 insertions(+) create mode 100644 basis/circular/circular-docs.factor diff --git a/basis/circular/circular-docs.factor b/basis/circular/circular-docs.factor new file mode 100644 index 0000000000..362d41c9de --- /dev/null +++ b/basis/circular/circular-docs.factor @@ -0,0 +1,58 @@ +! Copyright (C) 2008 Doug Coleman. +! See http://factorcode.org/license.txt for BSD license. +USING: help.markup help.syntax io.streams.string sequences +math kernel ; +IN: circular + +HELP: +{ $values + { "n" integer } + { "circular" circular } } +{ $description "Creates a new circular string object. A circular string is a string object that can be accessed out of bounds and the index will wrap around to the start of the string." } ; + +HELP: +{ $values + { "seq" sequence } + { "circular" circular } } +{ $description "Creates a new " { $link circular } " object that wraps an existing sequence. By default, the index is set to zero." } ; + +HELP: +{ $values + { "capacity" integer } + { "growing-circular" growing-circular } } +{ $description "Creates a new growing-circular object." } ; + +HELP: change-circular-start +{ $values + { "n" integer } { "circular" circular } } +{ $description "Changes the start index of a circular object." } ; + +HELP: circular +{ $description "A tuple class that stores a sequence and its start index." } ; + +HELP: growing-circular +{ $description "A circular sequence that is growable." } ; + +HELP: push-circular +{ $values + { "elt" object } { "circular" circular } } +{ $description "Pushes an element to a " { $link circular } " object." } ; + +HELP: push-growing-circular +{ $values + { "elt" object } { "circular" circular } } +{ $description "Pushes an element onto a " { $link growing-circular } " object." } ; + +ARTICLE: "circular" "circular" +"The " { $vocab-link "circular" } " vocabulary implements the " { $link "sequence-protocol" } " to allow an arbitrary start index and wrap-around indexing." $nl +"Creating a new circular object:" +{ $subsection } +{ $subsection } +{ $subsection } +"Changing the start index:" +{ $subsection change-circular-start } +"Pushing new elements:" +{ $subsection push-circular } +{ $subsection push-growing-circular } ; + +ABOUT: "circular" diff --git a/basis/circular/circular.factor b/basis/circular/circular.factor index 5d2378120f..9f3a71f2a8 100755 --- a/basis/circular/circular.factor +++ b/basis/circular/circular.factor @@ -11,9 +11,11 @@ TUPLE: circular seq start ; : ( seq -- circular ) 0 circular boa ; +> + ] keep [ seq>> length rem ] keep ; inline +PRIVATE> M: circular length seq>> length ; @@ -37,11 +39,13 @@ TUPLE: growing-circular < circular length ; M: growing-circular length length>> ; +> length ] bi = ; : set-peek ( elt seq -- ) [ length 1- ] keep set-nth ; +PRIVATE> : push-growing-circular ( elt circular -- ) dup full? [ push-circular ] From 6455b44d582d975963eb6ed132148767c63870f9 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sun, 14 Sep 2008 23:32:25 -0500 Subject: [PATCH 04/12] move the article down --- basis/columns/columns-docs.factor | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/basis/columns/columns-docs.factor b/basis/columns/columns-docs.factor index 818ce2f752..27dc160812 100644 --- a/basis/columns/columns-docs.factor +++ b/basis/columns/columns-docs.factor @@ -1,13 +1,6 @@ USING: help.markup help.syntax sequences ; IN: columns -ARTICLE: "columns" "Column sequences" -"A " { $emphasis "column" } " presents a column of a matrix represented as a sequence of rows:" -{ $subsection column } -{ $subsection } -"A utility word:" -{ $subsection } ; - HELP: column { $class-description "A virtual sequence which presents a fixed column of a matrix represented as a sequence of rows. New instances can be created by calling " { $link } "." } ; @@ -30,4 +23,11 @@ HELP: { $description "Outputs a new virtual sequence which presents the transpose of " { $snippet "seq" } "." } { $notes "This is the virtual sequence equivalent of " { $link flip } "." } ; +ARTICLE: "columns" "Column sequences" +"A " { $emphasis "column" } " presents a column of a matrix represented as a sequence of rows:" +{ $subsection column } +{ $subsection } +"A utility word:" +{ $subsection } ; + ABOUT: "columns" From d5281cbe464155df51e243156470269ffd29d211 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 15 Sep 2008 00:03:53 -0500 Subject: [PATCH 05/12] add docs for short-circuit combinators --- .../short-circuit/short-circuit-docs.factor | 84 +++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 basis/combinators/short-circuit/short-circuit-docs.factor diff --git a/basis/combinators/short-circuit/short-circuit-docs.factor b/basis/combinators/short-circuit/short-circuit-docs.factor new file mode 100644 index 0000000000..058291d022 --- /dev/null +++ b/basis/combinators/short-circuit/short-circuit-docs.factor @@ -0,0 +1,84 @@ +! Copyright (C) 2008 Doug Coleman. +! See http://factorcode.org/license.txt for BSD license. +USING: help.markup help.syntax io.streams.string quotations +math ; +IN: combinators.short-circuit + +HELP: 0&& +{ $values + { "quots" "a sequence of quotations" } + { "quot" quotation } } +{ $description "Returns true if every quotation in the sequence of quotations returns true." } ; + +HELP: 0|| +{ $values + { "quots" "a sequence of quotations" } + { "quot" quotation } } +{ $description "Returns true if any quotation in the sequence returns true." } ; + +HELP: 1&& +{ $values + { "quots" "a sequence of quotations" } + { "quot" quotation } } +{ $description "Returns true if every quotation in the sequence of quotations returns true. Each quotation gets the same element from the datastack and must output a boolean." } ; + +HELP: 1|| +{ $values + { "quots" "a sequence of quotations" } + { "quot" quotation } } +{ $description "Returns true if any quotation in the sequence returns true. Each quotation takes the same element from the datastack and must return a boolean." } ; + +HELP: 2&& +{ $values + { "quots" "a sequence of quotations" } + { "quot" quotation } } +{ $description "Returns true if every quotation in the sequence of quotations returns true. Each quotation gets the same two elements from the datastack and must output a boolean." } ; + +HELP: 2|| +{ $values + { "quots" "a sequence of quotations" } + { "quot" quotation } } +{ $description "Returns true if any quotation in the sequence returns true. Each quotation takes the same two elements from the datastack and must return a boolean." } ; + +HELP: 3&& +{ $values + { "quots" "a sequence of quotations" } + { "quot" quotation } } +{ $description "Returns true if every quotation in the sequence of quotations returns true. Each quotation gets the same three elements from the datastack and must output a boolean." } ; + +HELP: 3|| +{ $values + { "quots" "a sequence of quotations" } + { "quot" quotation } } +{ $description "Returns true if any quotation in the sequence returns true. Each quotation takes the same three elements from the datastack and must return a boolean." } ; + +HELP: n&&-rewrite +{ $values + { "quots" "a sequence of quotations" } { "N" integer } + { "quot" quotation } } +{ $description "A macro that reqrites the code to pass " { $snippet "N" } " parameters from the stack to each AND quotation." } ; + +HELP: n||-rewrite +{ $values + { "quots" "a sequence of quotations" } { "N" integer } + { "quot" quotation } } +{ $description "A macro that reqrites the code to pass " { $snippet "N" } " parameters from the stack to each OR quotation." } ; + +ARTICLE: "combinators.short-circuit" "combinators.short-circuit" +"The " { $vocab-link "combinators.short-circuit" } " vocabulary stops a computation early once a condition is met." $nl +"AND combinators:" +{ $subsection 0&& } +{ $subsection 1&& } +{ $subsection 2&& } +{ $subsection 3&& } +"OR combinators:" +{ $subsection 0|| } +{ $subsection 1|| } +{ $subsection 2|| } +{ $subsection 3|| } +"Generalized combinators:" +{ $subsection n&&-rewrite } +{ $subsection n||-rewrite } +; + +ABOUT: "combinators.short-circuit" From af9e85550e5768371e26eea4c7361244f639144f Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 15 Sep 2008 10:07:13 -0500 Subject: [PATCH 06/12] document remove-nth --- core/sequences/sequences-docs.factor | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/sequences/sequences-docs.factor b/core/sequences/sequences-docs.factor index dc45670aab..a0691f0d82 100755 --- a/core/sequences/sequences-docs.factor +++ b/core/sequences/sequences-docs.factor @@ -695,6 +695,16 @@ HELP: remove { $values { "obj" object } { "seq" sequence } { "newseq" "a new sequence" } } { $description "Outputs a new sequence containing all elements of the input sequence except those equal to the given element." } ; +HELP: remove-nth +{ $values + { "n" integer } { "seq" sequence } + { "seq'" sequence } } +{ $description "Creates a new sequence without the element at index " { $snippet "n" } "." } +{ $examples "Notice that the original sequence is left intact:" { $example "USING: sequences prettyprint kernel ;" + "{ 1 2 3 } 1 over remove-nth . ." + "{ 1 3 }\n{ 1 2 3 }" +} } ; + HELP: move { $values { "from" "an index in " { $snippet "seq" } } { "to" "an index in " { $snippet "seq" } } { "seq" "a mutable sequence" } } { $description "Sets the element with index " { $snippet "m" } " to the element with index " { $snippet "n" } "." } From 1c178869851c5792bcdbbc599c984e428e03a6d0 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 15 Sep 2008 10:17:08 -0500 Subject: [PATCH 07/12] document smart short circuit combinators --- .../short-circuit/smart/smart-docs.factor | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 basis/combinators/short-circuit/smart/smart-docs.factor diff --git a/basis/combinators/short-circuit/smart/smart-docs.factor b/basis/combinators/short-circuit/smart/smart-docs.factor new file mode 100644 index 0000000000..abf3ff0eef --- /dev/null +++ b/basis/combinators/short-circuit/smart/smart-docs.factor @@ -0,0 +1,37 @@ +! Copyright (C) 2008 Doug Coleman. +! See http://factorcode.org/license.txt for BSD license. +USING: help.markup help.syntax io.streams.string quotations ; +IN: combinators.short-circuit.smart + +HELP: && +{ $values + { "quots" "a sequence of quotations" } + { "quot" quotation } } +{ $description "Infers the number of arguments that each quotation takes from the stack. Eacn quotation must take the same number of arguments. Returns true if every quotation yields true, and stops early if one yields false." } +{ $examples "Smart combinators will infer the two inputs:" + { $example "USING: prettyprint kernel math combinators.short-circuit.smart ;" + "2 3 { [ + 5 = ] [ - -1 = ] } && ." + "t" + } +} ; + +HELP: || +{ $values + { "quots" "a sequence of quotations" } + { "quot" quotation } } +{ $description "Infers the number of arguments that each quotation takes from the stack. Eacn quotation must take the same number of arguments. Returns true if any quotation yields true, and stops early when one yields true." } +{ $examples "Smart combinators will infer the two inputs:" + { $example "USING: prettyprint kernel math combinators.short-circuit.smart ;" + "2 3 { [ - 1 = ] [ + 5 = ] } || ." + "t" + } +} ; + +ARTICLE: "combinators.short-circuit.smart" "combinators.short-circuit.smart" +"The " { $vocab-link "combinators.short-circuit.smart" } " vocabulary infers the number of inputs that the sequence of quotations takes." $nl +"Generalized AND:" +{ $subsection && } +"Generalized OR:" +{ $subsection || } ; + +ABOUT: "combinators.short-circuit.smart" From 8da5f3a82a3d6c82782edae67e9d4df91ba6e12a Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 15 Sep 2008 10:18:43 -0500 Subject: [PATCH 08/12] move article and about to bottom --- basis/command-line/command-line-docs.factor | 74 ++++++++++----------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/basis/command-line/command-line-docs.factor b/basis/command-line/command-line-docs.factor index 440896deac..d1b18ab5da 100644 --- a/basis/command-line/command-line-docs.factor +++ b/basis/command-line/command-line-docs.factor @@ -1,6 +1,43 @@ USING: help.markup help.syntax parser vocabs.loader strings ; IN: command-line +HELP: run-bootstrap-init +{ $description "Runs the " { $snippet ".factor-boot-rc" } " file in the user's home directory unless the " { $snippet "-no-user-init" } " command line switch was given." } ; + +HELP: run-user-init +{ $description "Runs the " { $snippet ".factor-rc" } " file in the user's home directory unless the " { $snippet "-no-user-init" } " command line switch was given." } ; + +HELP: cli-param +{ $values { "param" string } } +{ $description "Process a command-line switch." +$nl +"If the parameter contains " { $snippet "=" } ", the global variable named by the string before the equals sign is set to the string after the equals sign." +$nl +"If the parameter begins with " { $snippet "no-" } ", sets the global variable named by the parameter with the prefix removed to " { $link f } "." +$nl +"Otherwise, sets the global variable named by the parameter to " { $link t } "." } ; + +HELP: cli-args +{ $values { "args" "a sequence of strings" } } +{ $description "Outputs the command line parameters which were passed to the Factor VM on startup." } ; + +HELP: main-vocab-hook +{ $var-description "Global variable holding a quotation which outputs a vocabulary name. UI backends set this so that the UI can automatically start if the prerequisites are met (for example, " { $snippet "$DISPLAY" } " being set on X11)." } ; + +HELP: main-vocab +{ $values { "vocab" string } } +{ $description "Outputs the name of the vocabulary which is to be run on startup using the " { $link run } " word. The " { $snippet "-run" } " command line switch overrides this setting." } ; + +HELP: default-cli-args +{ $description "Sets global variables corresponding to default command line arguments." } ; + +HELP: ignore-cli-args? +{ $values { "?" "a boolean" } } +{ $description "On Mac OS X, source files to run are supplied by the Cocoa API, so to avoid running them twice the startup code has to call this word." } ; + +HELP: parse-command-line +{ $description "Called on startup to process command line arguments. This sets global variables with " { $link cli-param } ", runs source files, and evaluates the string given by the " { $snippet "-e" } " switch, if there is one." } ; + ARTICLE: "runtime-cli-args" "Command line switches for the VM" "A handful of command line switches are processed by the VM and not the library. They control low-level features." { $table @@ -77,40 +114,3 @@ $nl { $subsection main-vocab-hook } ; ABOUT: "cli" - -HELP: run-bootstrap-init -{ $description "Runs the " { $snippet ".factor-boot-rc" } " file in the user's home directory unless the " { $snippet "-no-user-init" } " command line switch was given." } ; - -HELP: run-user-init -{ $description "Runs the " { $snippet ".factor-rc" } " file in the user's home directory unless the " { $snippet "-no-user-init" } " command line switch was given." } ; - -HELP: cli-param -{ $values { "param" string } } -{ $description "Process a command-line switch." -$nl -"If the parameter contains " { $snippet "=" } ", the global variable named by the string before the equals sign is set to the string after the equals sign." -$nl -"If the parameter begins with " { $snippet "no-" } ", sets the global variable named by the parameter with the prefix removed to " { $link f } "." -$nl -"Otherwise, sets the global variable named by the parameter to " { $link t } "." } ; - -HELP: cli-args -{ $values { "args" "a sequence of strings" } } -{ $description "Outputs the command line parameters which were passed to the Factor VM on startup." } ; - -HELP: main-vocab-hook -{ $var-description "Global variable holding a quotation which outputs a vocabulary name. UI backends set this so that the UI can automatically start if the prerequisites are met (for example, " { $snippet "$DISPLAY" } " being set on X11)." } ; - -HELP: main-vocab -{ $values { "vocab" string } } -{ $description "Outputs the name of the vocabulary which is to be run on startup using the " { $link run } " word. The " { $snippet "-run" } " command line switch overrides this setting." } ; - -HELP: default-cli-args -{ $description "Sets global variables corresponding to default command line arguments." } ; - -HELP: ignore-cli-args? -{ $values { "?" "a boolean" } } -{ $description "On Mac OS X, source files to run are supplied by the Cocoa API, so to avoid running them twice the startup code has to call this word." } ; - -HELP: parse-command-line -{ $description "Called on startup to process command line arguments. This sets global variables with " { $link cli-param } ", runs source files, and evaluates the string given by the " { $snippet "-e" } " switch, if there is one." } ; From f7c322f83aaef1ea7d46c4cd620f0f13aedf47dc Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 15 Sep 2008 10:30:06 -0500 Subject: [PATCH 09/12] make a couple words private, use ERROR: instead of throwing strings --- basis/concurrency/combinators/combinators.factor | 4 ++++ basis/concurrency/count-downs/count-downs.factor | 8 ++++++-- basis/concurrency/messaging/messaging.factor | 9 +++++++-- basis/concurrency/promises/promises.factor | 3 ++- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/basis/concurrency/combinators/combinators.factor b/basis/concurrency/combinators/combinators.factor index eab0ed4cb4..ab3ca7ed4a 100755 --- a/basis/concurrency/combinators/combinators.factor +++ b/basis/concurrency/combinators/combinators.factor @@ -4,8 +4,10 @@ USING: concurrency.futures concurrency.count-downs sequences kernel ; IN: concurrency.combinators +r r> keep await ; inline +PRIVATE> : parallel-each ( seq quot -- ) over length [ @@ -20,7 +22,9 @@ IN: concurrency.combinators : parallel-filter ( seq quot -- newseq ) over >r pusher >r each r> r> like ; inline + : parallel-map ( seq quot -- newseq ) [ curry future ] curry map future-values ; diff --git a/basis/concurrency/count-downs/count-downs.factor b/basis/concurrency/count-downs/count-downs.factor index 93cef250a1..c4bc92c688 100755 --- a/basis/concurrency/count-downs/count-downs.factor +++ b/basis/concurrency/count-downs/count-downs.factor @@ -11,14 +11,18 @@ TUPLE: count-down n promise ; : count-down-check ( count-down -- ) dup n>> zero? [ t swap promise>> fulfill ] [ drop ] if ; +ERROR: invalid-count-down-count count ; + : ( n -- count-down ) - dup 0 < [ "Invalid count for count down" throw ] when + dup 0 < [ invalid-count-down-count ] when \ count-down boa dup count-down-check ; +ERROR: count-down-already-done ; + : count-down ( count-down -- ) dup n>> dup zero? - [ "Count down already done" throw ] + [ count-down-already-done ] [ 1- >>n count-down-check ] if ; : await-timeout ( count-down timeout -- ) diff --git a/basis/concurrency/messaging/messaging.factor b/basis/concurrency/messaging/messaging.factor index 12b5d270d4..03d1304527 100755 --- a/basis/concurrency/messaging/messaging.factor +++ b/basis/concurrency/messaging/messaging.factor @@ -4,7 +4,7 @@ ! Concurrency library for Factor, based on Erlang/Termite style ! concurrency. USING: kernel threads concurrency.mailboxes continuations -namespaces assocs random accessors ; +namespaces assocs random accessors summary ; IN: concurrency.messaging GENERIC: send ( message thread -- ) @@ -52,9 +52,14 @@ TUPLE: reply data tag ; [ >r tag>> r> tag>> = ] [ 2drop f ] if ; +ERROR: cannot-send-synchronous-to-self message thread ; + +M: cannot-send-synchronous-to-self summary + drop "Cannot synchronous send to myself" ; + : send-synchronous ( message thread -- reply ) dup self eq? [ - "Cannot synchronous send to myself" throw + cannot-send-synchronous-to-self ] [ >r dup r> send [ synchronous-reply? ] curry receive-if diff --git a/basis/concurrency/promises/promises.factor b/basis/concurrency/promises/promises.factor index 511decdf35..382697e04f 100755 --- a/basis/concurrency/promises/promises.factor +++ b/basis/concurrency/promises/promises.factor @@ -11,9 +11,10 @@ TUPLE: promise mailbox ; : promise-fulfilled? ( promise -- ? ) mailbox>> mailbox-empty? not ; +ERROR: promise-already-fulfilled promise ; : fulfill ( value promise -- ) dup promise-fulfilled? [ - "Promise already fulfilled" throw + promise-already-fulfilled ] [ mailbox>> mailbox-put ] if ; From 7bebe265aff8e1d511a1e0ef2ef284700817db41 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 15 Sep 2008 10:33:03 -0500 Subject: [PATCH 10/12] remove extra IN:, use dip --- basis/delegate/delegate-docs.factor | 1 - basis/delegate/delegate.factor | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/basis/delegate/delegate-docs.factor b/basis/delegate/delegate-docs.factor index 93bf70b950..0d2f94c13d 100644 --- a/basis/delegate/delegate-docs.factor +++ b/basis/delegate/delegate-docs.factor @@ -45,5 +45,4 @@ $nl { $subsection define-consult } "The " { $vocab-link "delegate.protocols" } " vocabulary defines formal protocols for the various informal protocols used in the Factor core, such as " { $link "sequence-protocol" } ", " { $link "assocs-protocol" } " or " { $link "stream-protocol" } ; -IN: delegate ABOUT: { "delegate" "intro" } diff --git a/basis/delegate/delegate.factor b/basis/delegate/delegate.factor index 45cc214792..12860337ff 100755 --- a/basis/delegate/delegate.factor +++ b/basis/delegate/delegate.factor @@ -62,7 +62,7 @@ M: tuple-class group-words protocol-consult keys ; : lost-words ( protocol wordlist -- lost-words ) - >r protocol-words r> diff ; + [ protocol-words ] dip diff ; : forget-old-definitions ( protocol new-wordlist -- ) [ drop protocol-users ] [ lost-words ] 2bi From 951b6c79187a69479cd749d090192478a5f523e7 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 15 Sep 2008 11:53:39 -0500 Subject: [PATCH 11/12] add a vocab-link --- basis/disjoint-sets/disjoint-sets-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/disjoint-sets/disjoint-sets-docs.factor b/basis/disjoint-sets/disjoint-sets-docs.factor index 40e14b7fca..cded25b48d 100644 --- a/basis/disjoint-sets/disjoint-sets-docs.factor +++ b/basis/disjoint-sets/disjoint-sets-docs.factor @@ -37,7 +37,7 @@ HELP: assoc>disjoint-set } ; ARTICLE: "disjoint-sets" "Disjoint sets" -"The " { $emphasis "disjoint set" } " data structure, also known as " { $emphasis "union-find" } " (after the two main operations which it supports) represents a set of elements partitioned into disjoint equivalence classes, or alternatively, an equivalence relation on a set." +"The " { $vocab-link "disjoint-sets" } " vocabulary implements the " { $emphasis "disjoint set" } " data structure (also known as " { $emphasis "union-find" } ", after the two main operations which it supports) that represents a set of elements partitioned into disjoint equivalence classes, or alternatively, an equivalence relation on a set." $nl "The two main supported operations are equating two elements, which joins their equivalence classes, and checking if two elements belong to the same equivalence class. Both operations have the time complexity of the inverse Ackermann function, which for all intents and purposes is constant time." $nl From e39d8ab92c394eddf865a3717f67dab0781d3506 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 15 Sep 2008 11:54:42 -0500 Subject: [PATCH 12/12] deques docs --- basis/deques/deques-docs.factor | 119 ++++++++++++++++++++++---------- 1 file changed, 83 insertions(+), 36 deletions(-) diff --git a/basis/deques/deques-docs.factor b/basis/deques/deques-docs.factor index 5a4b33887b..58f077ed1e 100644 --- a/basis/deques/deques-docs.factor +++ b/basis/deques/deques-docs.factor @@ -1,45 +1,29 @@ +USING: help.markup help.syntax kernel math sequences +quotations ; IN: deques -USING: help.markup help.syntax kernel ; - -ARTICLE: "deques" "Dequeues" -"A deque is a data structure with constant-time insertion and removal of elements at both ends. Dequeue operations are defined in the " { $vocab-link "deques" } " vocabulary." -$nl -"Dequeues must be instances of a mixin class:" -{ $subsection deque } -"Dequeues must implement a protocol." -$nl -"Querying the deque:" -{ $subsection peek-front } -{ $subsection peek-back } -{ $subsection deque-length } -{ $subsection deque-member? } -"Adding and removing elements:" -{ $subsection push-front* } -{ $subsection push-back* } -{ $subsection pop-front* } -{ $subsection pop-back* } -{ $subsection clear-deque } -"Working with node objects output by " { $link push-front* } " and " { $link push-back* } ":" -{ $subsection delete-node } -{ $subsection node-value } -"Utility operations built in terms of the above:" -{ $subsection deque-empty? } -{ $subsection push-front } -{ $subsection push-all-front } -{ $subsection push-back } -{ $subsection push-all-back } -{ $subsection pop-front } -{ $subsection pop-back } -{ $subsection slurp-deque } -"When using a deque as a queue, the convention is to queue elements with " { $link push-front } " and deque them with " { $link pop-back } "." ; - -ABOUT: "deques" HELP: deque-empty? -{ $values { "deque" { $link deque } } { "?" "a boolean" } } +{ $values { "deque" deque } { "?" "a boolean" } } { $description "Returns true if a deque is empty." } { $notes "This operation is O(1)." } ; +HELP: clear-deque +{ $values + { "deque" deque } } +{ $description "Removes all elements from a deque." } ; + +HELP: deque-length +{ $values + { "deque" deque } + { "n" integer } } +{ $description "Returns the number of elements in a deque." } ; + +HELP: deque-member? +{ $values + { "value" object } { "deque" deque } + { "?" "a boolean" } } +{ $description "Returns true if the " { $snippet "value" } " is found in the deque." } ; + HELP: push-front { $values { "obj" object } { "deque" deque } } { $description "Push the object onto the front of the deque." } @@ -60,6 +44,16 @@ HELP: push-back* { $description "Push the object onto the back of the deque and return the newly created node." } { $notes "This operation is O(1)." } ; +HELP: push-all-back +{ $values + { "seq" sequence } { "deque" deque } } +{ $description "Pushes a sequence of elements onto the back of a deque." } ; + +HELP: push-all-front +{ $values + { "seq" sequence } { "deque" deque } } +{ $description "Pushes a sequence of elements onto the front of a deque." } ; + HELP: peek-front { $values { "deque" deque } { "obj" object } } { $description "Returns the object at the front of the deque." } ; @@ -87,3 +81,56 @@ HELP: pop-back* { $values { "deque" deque } } { $description "Pop the object off the back of the deque." } { $notes "This operation is O(1)." } ; + +HELP: delete-node +{ $values + { "node" object } { "deque" deque } } +{ $description "Deletes the node from the deque." } ; + +HELP: deque +{ $description "A data structure that has constant-time insertion and removal of elements at both ends." } ; + +HELP: node-value +{ $values + { "node" object } + { "value" object } } +{ $description "Accesses the value stored at a node." } ; + +HELP: slurp-deque +{ $values + { "deque" deque } { "quot" quotation } } +{ $description "Pops off the back element of the deque and calls the quotation in a loop until the deque is empty." } ; + +ARTICLE: "deques" "Deques" +"The " { $vocab-link "deques" } " vocabulary implements the deque data structure which has constant-time insertion and removal of elements at both ends." +$nl +"Deques must be instances of a mixin class:" +{ $subsection deque } +"Deques must implement a protocol." +$nl +"Querying the deque:" +{ $subsection peek-front } +{ $subsection peek-back } +{ $subsection deque-length } +{ $subsection deque-member? } +"Adding and removing elements:" +{ $subsection push-front* } +{ $subsection push-back* } +{ $subsection pop-front* } +{ $subsection pop-back* } +{ $subsection clear-deque } +"Working with node objects output by " { $link push-front* } " and " { $link push-back* } ":" +{ $subsection delete-node } +{ $subsection node-value } +"Utility operations built in terms of the above:" +{ $subsection deque-empty? } +{ $subsection push-front } +{ $subsection push-all-front } +{ $subsection push-back } +{ $subsection push-all-back } +{ $subsection pop-front } +{ $subsection pop-back } +{ $subsection slurp-deque } +"When using a deque as a queue, the convention is to queue elements with " { $link push-front } " and deque them with " { $link pop-back } "." ; + +ABOUT: "deques"