chore: nuke stdlib from main repo

This commit is contained in:
rvcas 2022-12-06 22:26:07 -05:00
parent 45990f1f84
commit d8ff574045
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
7 changed files with 0 additions and 544 deletions

View File

@ -1,6 +0,0 @@
name = "aiken_std"
version = "0.1.0"
licences = ["Apache-2.0"]
description = "Aiken contracts"
[dependencies]

View File

@ -1,21 +0,0 @@
use aiken/builtin
pub fn slice(bytes: ByteArray, start: Int, end: Int) -> ByteArray {
builtin.slice_bytearray(start, end, bytes)
}
pub fn length(bytes: ByteArray) -> Int {
builtin.length_of_bytearray(bytes)
}
pub fn is_empty(bytes: ByteArray) -> Bool {
length(bytes) == 0
}
pub fn concat(left front: ByteArray, right back: ByteArray) -> ByteArray {
builtin.append_bytearray(front, back)
}
pub fn prepend(rest: ByteArray, byte: Int) -> ByteArray {
builtin.cons_bytearray(byte, rest)
}

View File

@ -1,123 +0,0 @@
use aiken/map.{Map}
pub type ScriptContext(purpose) {
transaction: Transaction,
purpose: purpose,
}
pub type Hash(a) =
ByteArray
pub type ScriptPurpose {
Mint(PolicyId)
Spend(OutputReference)
Withdrawal(StakeCredential)
Certify(Certificate)
}
pub type Redeemer =
Data
pub type BoundValue(value) {
NegativeInfinity
Finite(value)
PositiveInfinity
}
pub type Bound(value) {
value: BoundValue(value),
is_inclusive: Bool,
}
pub type Interval(value) {
lower_bound: Bound(value),
upper_bound: Bound(value),
}
pub type Transaction {
inputs: List(Input),
reference_inputs: List(Input),
outputs: List(Output),
fee: Value,
mint: Value,
certificates: List(Certificate),
withdrawals: Map(StakeCredential, Int),
validity_range: Interval(Int),
extra_signatories: List(PublicKeyHash),
redeemers: Map(ScriptPurpose, Redeemer),
datums: Map(Hash(Data), Data),
id: TransactionId,
}
pub type TransactionId {
hash: Hash(Transaction),
}
pub type Input {
output_reference: OutputReference,
output: Output,
}
pub type OutputReference {
transction_id: TransactionId,
output_index: Int,
}
pub type PolicyId =
ByteArray
pub type StakeCredential {
StakeHash(Credential)
StakePointer(Int, Int, Int)
}
pub type Credential {
PublicKeyCredential(PublicKeyHash)
ScriptCredential(ScriptHash)
}
pub type VerificationKey =
Nil
pub type ScriptHash =
ByteArray
pub type PublicKeyHash =
Hash(VerificationKey)
pub type PoolId =
Hash(VerificationKey)
pub type Output {
address: Address,
value: Value,
datum: DatumOption,
reference_script: Option(ScriptHash),
}
pub type Address {
payment_credential: Credential,
stake_credential: Option(StakeCredential),
}
pub type DatumOption {
NoDatum
DatumHash(Hash(Data))
Datum(Data)
}
pub type AssetName =
ByteArray
pub type Value =
Map(PolicyId, Map(AssetName, Int))
pub type Certificate {
CredentialRegistration { delegator: StakeCredential }
CredentialDeregistration { delegator: StakeCredential }
CredentialDelegation { delegator: StakeCredential, delegatee: PoolId }
PoolRegistration { pool_id: PoolId, vrf: Hash(VerificationKey) }
PoolDeregistration { pool_id: PoolId, epoch: Int }
Governance
TreasuryMovement
}

View File

@ -1,3 +0,0 @@
pub type Mint {
currency_symbol: ByteArray,
}

View File

@ -1,303 +0,0 @@
// TODO: To be written once we have support for tuples
//
// pub fn map2(xs: List(a), ys: List(b), fn (a, b) -> c) -> List c
// pub fn map3(xs: List(a), ys: List(b), zs: List(c), fn (a, b, c) -> d) -> List d
// pub fn zip(xs: List(a), ys: List(b)) -> List(a, b)
// pub fn unzip(xs: List(a, b)) -> (List(a), List(b))
use aiken/builtin
/// Merge two lists together.
///
/// ----- TODO: Add support for writing tests.
///
/// test concat_1() {
/// concat([1,2,3], [4,5,6]) == [1,2,3,4,5,6]
/// }
///
/// test concat_2() {
/// concat([1,2,3], []) == [1,2,3]
/// }
///
/// test concat_3() {
/// concat([], [1,2,3]) == [1,2,3]
/// }
pub fn concat(left: List(a), right: List(a)) -> List(a) {
foldr(left, fn(x, xs) { [x, ..xs] }, right)
}
/// Construct a list filled with n copies of a value.
///
/// ----- TODO: Add support for writing tests.
///
/// test repeat_1() {
/// repeat(0, 42) == []
/// }
///
/// test repeat_2() {
/// repeat(3, 14) == [14,14,14]
/// }
pub fn repeat(x: a, n: Int) -> List(a) {
if n <= 0 {
[]
} else {
[x, ..repeat(x, n - 1)]
}
}
/// Construct a list of a integer from a given range.
///
/// ----- TODO: Add support for writing tests.
///
/// test range_1() {
/// range(-1, 1) == [-1, 0, 1]
/// }
pub fn range(from: Int, to: Int) -> List(Int) {
if from > to {
[]
} else {
[from, ..range(from + 1, to)]
}
}
/// Get the first element of a list
pub fn head(xs: List(a)) -> Option(a) {
when xs is {
[] -> None
_ -> Some(builtin.head_list(xs))
}
}
/// Get elements of a list after the first one, if any
pub fn tail(xs: List(a)) -> Option(List(a)) {
when xs is {
[] -> None
[_, ..rest] -> Some(rest)
}
}
/// Get the first `n` elements of a list.
pub fn take(xs: List(a), n: Int) -> List(a) {
if n <= 0 {
[]
} else {
when xs is {
[] -> []
[x, ..rest] -> [x, ..take(rest, n - 1)]
}
}
}
/// Drop the first `n` elements of a list.
pub fn drop(xs: List(a), n: Int) -> List(a) {
if n <= 0 {
xs
} else {
when xs is {
[] -> []
[_x, ..rest] -> drop(rest, n - 1)
}
}
}
/// Get the number of elements in the given list.
///
/// ----- TODO: Add support for writing tests.
///
/// test length_1() {
/// length([1,2,3]) == 3
/// }
///
/// test length_2() {
/// length([]) == 0
/// }
pub fn length(xs: List(a)) -> Int {
when xs is {
[] -> 0
[_, ..rest] -> 1 + length(rest)
}
}
/// Get the number of elements in the given list.
///
/// ----- TODO: Add support for writing tests.
///
/// test reverse_1() {
/// length([1,2,3]) == [3,2,1]
/// }
///
/// test reverse_2() {
/// length([]) == []
/// }
pub fn reverse(xs: List(a)) -> List(a) {
foldr(xs, fn(x, rest) { [x, ..rest] }, [])
}
/// Figures out whether a list contain the given element.
///
/// ----- TODO: Add support for writing tests.
///
/// test is_elem_1() {
/// is_elem([1,2,3], 1) == True
/// }
///
/// test is_elem_2() {
/// is_elem([1,2,3], 14) == False
/// }
///
/// test is_elem_3() {
/// is_elem([], 14) == False
/// }
pub fn is_elem(xs: List(a), x: a) -> Bool {
when xs is {
[] -> False
[y, ..rest] ->
if x == y {
True
} else {
is_elem(rest, x)
}
}
}
/// Determine if all elements of the list satisfy the given predicate.
///
/// ----- TODO: Add support for writing tests.
///
/// test all_1() {
/// all([1,2,3], fn(n) { n > 0 }) == True
/// }
///
/// test all_2() {
/// all([1,2,3], fn(n) { n > 42 }) == False
/// }
///
/// test all_3() {
/// all([], fn(n) { n == 42 }) == True
/// }
pub fn all(xs: List(a), predicate: fn(a) -> Bool) -> Bool {
foldr(xs, fn(x, result) { predicate(x) && result }, True)
}
/// Determine if at least one element of the list satisfies the given predicate.
///
/// ----- TODO: Add support for writing tests.
///
/// test any_1() {
/// any([1,2,3], fn(n) { n > 0 }) == True
/// }
///
/// test any_2() {
/// any([1,2,3], fn(n) { n > 42 }) == False
/// }
///
/// test any_3() {
/// any([], fn(n) { n == 42 }) == False
/// }
pub fn any(xs: List(a), predicate: fn(a) -> Bool) -> Bool {
foldr(xs, fn(x, result) { predicate(x) || result }, True)
}
/// Apply a function from each element of a list.
///
/// ----- TODO: Add support for writing tests.
///
/// test map_1() {
/// map([1,2,3,4], fn(n) { n + 1 }) == [2,3,4,5]
/// }
///
/// test map_2() {
/// map([], fn(n) { n + 1 }) == []
/// }
pub fn map(xs: List(a), f: fn(a) -> b) -> List(b) {
when xs is {
[] -> []
[x, ..rest] -> [f(x), ..map(rest, f)]
}
}
/// Reduce a list from left to right.
///
/// ----- TODO: Add support for writing tests.
///
/// test foldl_1() {
/// foldl([1, 2, 3, 4, 5], fn(n, total) { n + total }, 0) == 15
/// }
pub fn foldl(xs: List(a), f: fn(a, b) -> b, zero: b) -> b {
when xs is {
[] -> zero
[x, ..rest] -> foldl(rest, f, f(x, zero))
}
}
/// Reduce a list from right to left.
///
/// ----- TODO: Add support for writing tests.
///
/// test foldr_1() {
/// foldr([1, 2, 3, 4, 5], fn(n, total) { n + total }, 0) == 15
/// }
pub fn foldr(xs: List(a), f: fn(a, b) -> b, zero: b) -> b {
when xs is {
[] -> zero
[x, ..rest] -> f(x, foldr(rest, f, zero))
}
}
/// Produce a list from elements that statisfy a predicate.
///
/// ----- TODO: Add support for writing tests.
///
/// test filter_1() {
/// filter([1, 2, 3, 4, 5, 6], fn(x) { builtin.modInteger(x, 2) == 0 }) == [2, 4, 6]
/// }
pub fn filter(xs: List(a), f: fn(a) -> Bool) -> List(a) {
foldr(
xs,
fn(x, ys) {
if f(x) {
[x, ..ys]
} else {
ys
}
},
[],
)
}
/// Find a element satisfying the given predicate.
pub fn find(xs: List(a), f: fn(a) -> Bool) -> Option(a) {
when xs is {
[] -> None
[x, ..rest] ->
if f(x) {
Some(x)
} else {
find(rest, f)
}
}
}
/// Produce a list from elements that statisfy a predicate.
///
/// ----- TODO: Add support for writing tests.
///
/// test filter_map_1() {
/// filter_map([1, 2, 3, 4, 5, 6], fn(x) { if (builtin.modInteger(x, 2) != 0) { Some(3*x) } else { None } }) == [3, 9, 15]
/// }
pub fn filter_map(xs: List(a), f: fn(a) -> Option(b)) -> List(b) {
foldr(
xs,
fn(x, ys) {
when f(x) is {
None -> ys
Some(y) -> [y, ..ys]
}
},
[],
)
}
/// Map elements of a list into a new list and flatten the result.
pub fn flat_map(xs: List(a), f: fn(a) -> List(b)) -> List(b) {
foldr(xs, fn(x, ys) { concat(f(x), ys) }, [])
}

View File

@ -1,82 +0,0 @@
pub opaque type Map(key, value) {
inner: List(#(key, value)),
}
/// Create a new map
pub fn new() {
Map { inner: [] }
}
/// Get the inner list holding the map data
pub fn to_list(m: Map(key, value)) -> List(#(key, value)) {
m.inner
}
/// Get a value in the map by a key
///
/// ```aiken
/// use aiken/map
///
/// let info = map.new() |> map.insert(key: "name", value: "Aiken")
///
/// asset Some(x) = map.get(in: info, by: "key")
/// ```
pub fn get(in m: Map(key, value), by k: key) -> Option(value) {
do_get(m.inner, k)
}
fn do_get(elems: List(#(key, value)), k: key) -> Option(value) {
when elems is {
[] -> None
[#(first, second), ..xs] ->
if first == k {
Some(second)
} else {
do_get(xs, k)
}
}
}
/// Insert a value in the map by a key
///
/// ```aiken
/// use aiken/map
///
/// map.new() |> map.insert(key: "name", value: "Aiken")
/// ```
pub fn insert(
in m: Map(key, value),
key k: key,
value v: value,
) -> Map(key, value) {
if contains(m, k) {
m
} else {
Map { inner: [#(k, v), ..m.inner] }
}
}
/// Check if a key exists in the map
///
/// ```aiken
/// use aiken/map
///
/// let info = map.new() |> map.insert(key: "name", value: "Aiken")
///
/// asset Some(x) = map.contains(in: info, key: "key")
/// ```
pub fn contains(in m: Map(key, value), key k: key) -> Bool {
do_contains(m.inner, k)
}
fn do_contains(elems: List(#(key, value)), k: key) -> Bool {
when elems is {
[] -> False
[#(first, _), ..xs] ->
if first == k {
True
} else {
do_contains(xs, k)
}
}
}

View File

@ -1,6 +0,0 @@
use aiken/context.{ScriptContext}
use aiken/context/mint.{Mint}
pub fn mint(d: Nil, r: Nil, ctx: ScriptContext(Mint)) -> Bool {
True
}