Serene Runtime 1.0.0
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
31 const srn_value_t *b);
32
33/// Compute the xxHash32 of a value using the engine seed. The invariant
34/// srn_value_eq(a, b) == true_v => srn_value_hash(a) == srn_value_hash(b)
35/// must hold for every tag.
36[[gnu::nonnull(1, 2)]]
SRN_HASH_TYPE srn_hash_t
Definition context.h:44
srn_value_t * srn_value_eq(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
srn_hash_t srn_value_hash(srn_context_t *ctx, const srn_value_t *v)
Compute the xxHash32 of a value using the engine seed.
Definition protocols.c:138