61bool QMetaSequence::isSortable()
const
63 if (
auto iface = d()) {
64 return (iface->addRemoveCapabilities
65 & (QtMetaContainerPrivate::CanAddAtBegin | QtMetaContainerPrivate::CanAddAtEnd))
66 && (iface->addRemoveCapabilities
67 & (QtMetaContainerPrivate::CanRemoveAtBegin
68 | QtMetaContainerPrivate::CanRemoveAtEnd));
200void QMetaSequence::valueAtIndex(
const void *container, qsizetype index,
void *result)
const
202 if (canGetValueAtIndex())
203 d()->valueAtIndexFn(container, index, result);
225void QMetaSequence::setValueAtIndex(
void *container, qsizetype index,
const void *value)
const
227 if (canSetValueAtIndex())
228 d()->setValueAtIndexFn(container, index, value);