just

fun <A> just(r: A): Resource<A>

Deprecated

Use the resource DSL to create Resource values. Will be removed in Arrow 2.x.x

Replace with

import arrow.fx.coroutines.resource
resource { r }

Create a Resource from a pure value A.