---
title: uncheckedGet()
framework: usdkit
role: symbol
role_heading: Instance Method
path: usdkit/usdvalue/uncheckedget()
---

# uncheckedGet()

Returns the wrapped value as T without checking the dynamic type.

## Declaration

```swift
func uncheckedGet<T>() -> T where T : USDValueProtocol
```

## Discussion

Discussion important: The behaviour is undefined when T does not match the stored type. Prefer get() unless you have already confirmed the type with isHolding(_:).

## See Also

### Accessing the value

- [get()](usdkit/usdvalue/get().md)
- [isHolding(_:)](usdkit/usdvalue/isholding(_:).md)
