Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/xslt/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Julia中的限定限定函数_Julia - Fatal编程技术网

Julia中的限定限定函数

Julia中的限定限定函数,julia,Julia,我有以下相互冲突的出口: using DataFrames using DataStructures 下面返回一个错误: tail(dfc) WARNING: both DataStructures and DataFrames export "tail"; uses of it in module Main must be qualified ERROR: UndefVarError: tail not defined 我在一个论坛上看到了这种语法,但仍然失败: DataFrames::t

我有以下相互冲突的出口:

using DataFrames
using DataStructures
下面返回一个错误:

tail(dfc)
WARNING: both DataStructures and DataFrames export "tail"; uses of it in module Main must be qualified
ERROR: UndefVarError: tail not defined
我在一个论坛上看到了这种语法,但仍然失败:

DataFrames::tail(dfc)
ERROR: UndefVarError: tail not defined

有什么想法吗?

这似乎适用于julia版本0.4.6:

julia> using DataFrames, DataStructures

julia> lst = list(1, 2, 3)
list(1, 2, 3)

julia> DataStructures.tail(lst)
list(2, 3)
用于指定类型信息