StippleUI.PopupProxies.popup_proxy
— Functionpopup_proxy()
Renders a popup.
Missing docstring for PopupProxy
. Check Documenter's build log for details.
Base.string
— Functionstring(n::Integer; base::Integer = 10, pad::Integer = 1)
Convert an integer n
to a string in the given base
, optionally specifying a number of digits to pad to.
See also digits
, bitstring
, count_zeros
.
Examples
julia> string(5, base = 13, pad = 4)
"0005"
julia> string(-13, base = 5, pad = 4)
"-0023"
string(xs...)
Create a string from any values using the print
function.
string
should usually not be defined directly. Instead, define a method print(io::IO, x::MyType)
. If string(x)
for a certain type needs to be highly efficient, then it may make sense to add a method to string
and define print(io::IO, x::MyType) = print(io, string(x))
to ensure the functions are consistent.
See also: String
, repr
, sprint
, show
.
Examples
julia> string("a", 1, true)
"a1true"