You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -165,6 +165,10 @@ Currently, the `@compat` macro supports the following syntaxes:
165
165
166
166
*`bswap` is supported for `Complex` arguments on 0.5 and below. ([#21346])
167
167
168
+
*`Compat.invokelatest` is equivalent to `Base.invokelatest` in Julia 0.6,
169
+
but works in Julia 0.4+, and allows you to guarantee that a function call
170
+
invokes the latest version of a function ([#19784]).
171
+
168
172
*`Compat.StringVector` is supported on 0.5 and below. On 0.6 and later, it aliases `Base.StringVector`. This function allocates a `Vector{UInt8}` whose data can be made into a `String` in constant time; that is, without copying. On 0.5 and later, use `String(...)` with the vector allocated by `StringVector` as an argument to create a string without copying. Note that if 0.4 support is needed, `Compat.UTF8String(...)` should be used instead. ([#19449])
169
173
170
174
## Renamed functions
@@ -343,16 +347,19 @@ includes this fix. Find the minimum version from there.
0 commit comments