命名混式參數允許你在傳入參數給混帶函式時,略過其中幾個參數,
因為你可以直接告訴混帶函式你要傳入的參數為何。
mixin table(searchQuery, page= 0, amount= 100, order= 'id:asc') table // ... 程式 ... +table('search query', order='id:desc')