---
title: "/(_:_:)"
framework: swift
role: symbol
role_heading: Operator
path: "swift/uint128/_(_:_:)-4hvzy"
---

# /(_:_:)

Returns the quotient of dividing the first value by the second.

## Declaration

```swift
static func / (a: UInt128, b: UInt128) -> UInt128
```

## Discussion

Discussion For integer types, any remainder of the division is discarded. let x = 21 / 5 // x == 4
