Swift playground 中 "auto completion box" 中出现的 "S"、"T" 和 "Pr" 图标是什么意思?

What do the "S", "T" and "Pr" icons that appear in the "auto completion box" in Swift playground mean?

问题

Swift 游乐场 "auto completion box" 中出现的 "S"、"T" 和 "Pr" 图标是什么意思?还有其他种类吗?

谢谢!

答案(用于搜索引擎索引)

C  : Classes
Pr : Protocols
f  : Functions
S  : Structs
U  : Unions
E  : Enums
T  : Types
V  : Globals

这些是出现在符号导航器中的相同缩写,它们是为您定义的(如随附的屏幕截图所示):

因此,正如 table 告诉您的那样,C 表示 class,Pr 表示协议,依此类推。