base64.encode
no longer supports lineLen
and newLine
.
Use base64.encodeMIME
instead.os.splitPath()
behavior synchronized with os.splitFile()
to return "/"
as the dir component of "/root_sub_dir" instead of the empty string.sequtils.zip
now returns a sequence of anonymous tuples i.e. those tuples
now do not have fields named "a" and "b".strutils.formatFloat
with precision = 0
has the same behavior in all
backends, and it is compatible with Python's behavior,
e.g. formatFloat(3.14159, precision = 0)
is now 3
, not 3.
.lc
has been removed from sugar.nim.const
behave correctly now, meaning that code like
const SOMECONST = 0.int; procThatTakesInt32(SOMECONST)
will be illegal now.
Simply write const SOMECONST = 0
instead.macros.newLit
now works for ref object types.system.writeFile
has been overloaded to also support openarray[byte]
.strformat.fmt
macro that use specified characters as
delimiter instead of '{' and '}'.tables.nim
: OrderedTable.pop
, CountTable.del
,
CountTable.pop
, Table.pop
To strtabs.nim
, added StringTable.clear
overload that reuses the existing mode.
Added sugar.outplace
for turning in-place algorithms like sort
and shuffle
into
operations that work on a copy of the data and return the mutated copy. As the existing
sorted
does.
Added sugar.collect
that does comprehension for seq/set/table collections.
Added sugar.capture
for capturing some local loop variables when creating a closure.
This is an enhanced version of closureScope
.
asyncdispatch.drain
now properly takes into account selector.hasPendingOperations
and only returns once all pending async operations are guaranteed to have completed.asyncdispatch.drain
now consistently uses the passed timeout value for all
iterations of the event loop, and not just the first iteration.
This is more consistent with the other asyncdispatch apis, and allows
asyncdispatch.drain
to be more efficient.base64.encode
and base64.decode
was made faster by about 50%.htmlgen
adds MathML support
(ISO 40314).macros.eqIdent
is now invariant to export markers and backtick quotes.htmlgen.html
allows lang
on the <html>
tag and common valid attributes.align
pragma can now be used for variables and object fields, similar
to the alignas
declaration modifier in C/C++.--asm
command option for easier
inspection of the produced assembler code..localPassc
to
pass specific compiler options to the C(++) backend for the C(++) file
that was produced from the current Nim module.FD
variant of selector.unregister
for ioselector_epoll
and
ioselector_select
now properly handle the Event.User
select event type.