Skip to content

Commit

Permalink
update helpdb.jl, [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
sjkelly committed Apr 25, 2015
1 parent e7ea563 commit f4c9b86
Showing 1 changed file with 102 additions and 23 deletions.
125 changes: 102 additions & 23 deletions doc/helpdb.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1368,11 +1368,20 @@ Any[
"),

("Base","which","which(symbol)
Return the module in which the binding for the variable referenced
by \"symbol\" was created.
"),

("Base","@which","@which()
Evaluates the arguments to the specified function call, and returns
the \"Method\" object for the method that would be called for those
arguments.
Applied to a function call, it evaluates the arguments to the
specified function call, and returns the \"Method\" object for the
method that would be called for those arguments. Applied to a
variable, it returns the module in which the variable was bound. It
calls out to the \"which\" function.
"),

Expand Down Expand Up @@ -2379,7 +2388,7 @@ Any[

("Base","error","error(message::AbstractString)
Raise an error with the given message
Raise an \"ErrorException\" with the given message
"),

Expand Down Expand Up @@ -2424,88 +2433,157 @@ Any[
"),

("Base","AssertionError","AssertionError
("Base","ArgumentError","ArgumentError(msg)
The parameters to a function call do not match a valid signature.
"),

("Base","AssertionError","AssertionError([msg])
The asserted condition did not evalutate to \"true\".
"),

("Base","ArgumentError","ArgumentError
("Base","BoundsError","BoundsError([a][, i])
An indexing operation into an array, \"a\", tried to access an out-
of-bounds element, \"i\".
"),

("Base","DimensionMismatch","DimensionMismatch([msg])
The parameters given to a function call are not valid.
The objects called do not have matching dimensionality.
"),

("Base","BoundsError","BoundsError
("Base","DivideError","DivideError()
An indexing operation into an array tried to access an out-of-
bounds element.
Integer division was attempted with a denominator value of 0.
"),

("Base","EOFError","EOFError
("Base","DomainError","DomainError()
The arguments to a function or constructor are outside the valid
domain.
"),

("Base","EOFError","EOFError()
No more data was available to read from a file or stream.
"),

("Base","ErrorException","ErrorException
("Base","ErrorException","ErrorException(msg)
Generic error type. The error message, in the *.msg* field, may
provide more specific details.
"),

("Base","KeyError","KeyError
("Base","InexactError","InexactError()
Type conversion cannot be done exactly.
"),

("Base","InterruptException","InterruptException()
The process was stopped by a terminal interrupt (CTRL+C).
"),

("Base","KeyError","KeyError(key)
An indexing operation into an \"Associative\" (\"Dict\") or \"Set\"
like object tried to access or delete a non-existent element.
"),

("Base","LoadError","LoadError
("Base","LoadError","LoadError(file::AbstractString, line::Int, error)
An error occurred while *including*, *requiring*, or *using* a
file. The error specifics should be available in the *.error*
field.
"),

("Base","MethodError","MethodError
("Base","MethodError","MethodError(f, args)
A method with the required type signature does not exist in the
given generic function.
"),

("Base","ParseError","ParseError
("Base","NullException","NullException()
An attempted access to a \"Nullable\" with no defined value.
"),

("Base","OutOfMemoryError","OutOfMemoryError()
A generated syntax tree was too large for the available memory.
"),

("Base","OverflowError","OverflowError()
The result of an expression is too large for the specified type and
will cause an wraparound.
"),

("Base","ParseError","ParseError(msg)
The expression passed to the *parse* function could not be
interpreted as a valid Julia expression.
"),

("Base","ProcessExitedException","ProcessExitedException
("Base","ProcessExitedException","ProcessExitedException()
After a client Julia process has exited, further attempts to
reference the dead child will throw this exception.
"),

("Base","SystemError","SystemError
("Base","StackOverflowError","StackOverflowError()
The function call grew beyond the size of the call stack. This
usually happens when a call recurses infinitely.
"),

("Base","SystemError","SystemError(prefix::AbstractString[, errnum::Int32])
A system call failed with an error code (in the \"errno\" global
variable).
"),

("Base","TypeError","TypeError
("Base","TypeError","TypeError(func::Symbol, context::AbstractString, expected::Type, got)
A type assertion failure, or calling an intrinsic function with an
incorrect argument type.
"),

("Base","UndefRefError","UndefRefError()
The item or field is not defined for the given object.
"),

("Base","UndefVarError","UndefVarError(var::Symbol)
A symbol in the current scope is not defined.
"),

("Base","Timer","Timer(f::Function)
Create a timer to call the given callback function. The callback is
Expand Down Expand Up @@ -5175,11 +5253,12 @@ Millisecond(v)
("Base","cp","cp(src::AbstractString, dst::AbstractString; remove_destination::Bool=false, follow_symlinks::Bool=false)
Copy the file, link, or directory from *src* to *dest*.
\"remove_destination=true\" will first remove an existing `dst`.
\"remove_destination=true\" will first remove an existing *dst*.
If `follow_symlinks=false`, and src is a symbolic link, dst will be created as a symbolic link.
If `follow_symlinks=true` and src is a symbolic link, dst will be a copy of the file or directory
`src` refers to.
If *follow_symlinks=false*, and src is a symbolic link, dst will be
created as a symbolic link. If *follow_symlinks=true* and src is a
symbolic link, dst will be a copy of the file or directory *src*
refers to.
"),

Expand Down

0 comments on commit f4c9b86

Please sign in to comment.