来自https://github.com/MartinNowak/io/blob/master/src/std/io/package.d:
size_t write(const scope ubyte[] buf) scope;
第二个scope
关键字的含义是什么?
答案 0 :(得分:3)
它将scope
限定符应用于隐藏的this
参数。
通常来说,该函数之后的任何关键字都适用于this
,但其他结果与在任何其他参数上相同。例如,末尾的const
表示this
引用是const
。