+TypedList::TypedList(CssmAllocator &alloc, CSSM_WORDID_TYPE type, ListElement *elem1, ListElement *elem2, ListElement *elem3)
+{
+ append(new(alloc) ListElement(type));
+ append(elem1);
+ append(elem2);
+ append(elem3);
+}
+
+TypedList::TypedList(CssmAllocator &alloc, CSSM_WORDID_TYPE type, ListElement *elem1, ListElement *elem2, ListElement *elem3, ListElement *elem4)
+{
+ append(new(alloc) ListElement(type));
+ append(elem1);
+ append(elem2);
+ append(elem3);
+ append(elem4);
+}
+