XmlOrderConstraint

data class XmlOrderConstraint(val before: Int, val after: Int)(source)

Class that holds an ordering constraint. The before attribute is the element Index of the element that is to be ordered before the element at index after.

Constructors

Link copied to clipboard
constructor(before: Int, after: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val after: Int

The element ordered after

Link copied to clipboard
val before: Int

The element ordered before

Functions

Link copied to clipboard
inline fun <R> map(transform: (Int) -> R): Pair<R, R>