1
我無法弄清楚如何創建一個葉的「必須」,使其在列表中唯一。楊,葉必須在列表中是唯一的
這是帶有葉子的列表,該葉子可能與此列表中的任何其他葉子的值不同。的代碼
實施例:
list myList {
key name;
leaf name {
type uint32;
}
container myContainer {
leaf myLeaf {
type uint32;
}
must "count(/myList/myContainer/myLeaf = .) > 1" { //Dont know how to create this must function.
error-message "myLeaf needs to be unique in the myList list";
}
}
}
所以我想myLeaf到,如果有已經在myList中以電流值存在的元件觸發差錯消息。