Serene Runtime 1.0.0-dev
C runtime for the Serene programming language
Loading...
Searching...
No Matches
protocols.h
Go to the documentation of this file.
1/* -*- C -*-
2 * Serene programming language
3 * Copyright (C) 2019-2026 Sameer Rahmani <[email protected]>
4 *
5 * This library is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this library. If not, see <https://www.gnu.org/licenses/>.
17 */
18
19#pragma once
20
21#include "serene/rt/engine.h"
22
23typedef struct srn_context_t srn_context_t;
24typedef struct srn_value_t srn_value_t;
25
26// TODO(lxsameer): This is a short term solution. We need to implement protocols
27// in Serene and use them to implement `eq` functionality.
28
29/// Check to values for equality. Return a boolean
30srn_value_t *srn_value_eq(const srn_context_t *ctx, const srn_value_t *a, const srn_value_t *b);
31
32/// Compute the xxHash32 of a value using the engine seed. The invariant
33/// srn_value_eq(a, b) == true_v => srn_value_hash(a) == srn_value_hash(b)
34/// must hold for every tag.
35[[gnu::nonnull(1, 2)]]
37
38/// Whether `v` can be a hash key. srn_value_hash panics on the container and
39/// closure tags, so anything keying a map must pass this first and fail as an
40/// error value instead.
41[[nodiscard]] [[gnu::nonnull(1)]]
42bool srn_value_hashable(const srn_value_t *v);
SRN_HASH_TYPE srn_hash_t
Definition context.h:44
srn_hash_t srn_value_hash(const srn_context_t *ctx, const srn_value_t *v)
Compute the xxHash32 of a value using the engine seed.
Definition protocols.c:152
srn_value_t * srn_value_eq(const srn_context_t *ctx, const srn_value_t *a, const srn_value_t *b)
Check to values for equality. Return a boolean.
Definition protocols.c:38
bool srn_value_hashable(const srn_value_t *v)
Whether v can be a hash key.
Definition protocols.c:139