Skip to content

Instantly share code, notes, and snippets.

@mochadwi
Last active June 23, 2021 16:11
Show Gist options
  • Save mochadwi/3f1cfc9ca96a8a5dc2b531a68588f62b to your computer and use it in GitHub Desktop.
Save mochadwi/3f1cfc9ca96a8a5dc2b531a68588f62b to your computer and use it in GitHub Desktop.
/** Updates order [quanity], must be positive. */
fun updateOrderQuanity(orderId: OrderId, quantity: Int) {
require(quantity > 0) { "Quantity must be positive" }
// proceed with update
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment