在朱莉娅中代字号(~
)是什么意思?例如:
using DataFrames
dt=readtable("timelog 54660.csv", separator=';')
dt[~[(x in [:Date, :Topic, :Hours]) for x in names(dt)]]
我无法在julia docs中找到重要信息。搜索波浪号或“〜”似乎什么都没有
答案 0 :(得分:2)
您可以通过键入问号
来使用REPL中的帮助模式?〜给出以下输出:
help?> ~
search: ~
~(x)
Bitwise not.
julia> ~4
-5
julia> ~10
-11
julia> ~true
false