The Swift Programming Language (Swift 4) のメソッドのとこ読んでるんだけど、よくわからない。

> Methods are functions that are associated with a particular type. Classes, structures, and enumerations can all define instance methods,

class や構造体の中で定義した func 〜 はメソッドってことはわかった。

function の中でメソッドじゃないものってあるの?
Classes, structures, and enumerations の中以外でfunction定義するとこなんてないのでは?

objc から持ってきた function とかがメソッドじゃない?
演算子のオーバーライドとかがメソッドではないのかな?