Hash :
c8c572d2
Author :
Thomas de Grivel
Date :
2025-03-09T19:45:56
split env.h and env_eval.h
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
/* kc3
* Copyright from 2022 to 2025 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#ifndef LIBKC3_ENV_EVAL_H
#define LIBKC3_ENV_EVAL_H
#include "types.h"
/* Evaluator. */
bool env_eval_array (s_env *env, const s_array *array,
s_array *dest);
bool env_eval_array_tag (s_env *env, const s_array *array,
s_tag *dest);
bool env_eval_block (s_env *env, const s_block *block,
s_tag *dest);
bool env_eval_call (s_env *env, s_call *call,
s_tag *dest);
bool env_eval_call_arguments (s_env *env, s_list *args,
s_list **dest);
bool env_eval_call_callable (s_env *env, const s_call *call,
s_tag *dest);
bool env_eval_call_callable_args (s_env *env,
s_callable *callable,
s_list *arguments,
s_tag *dest);
bool env_eval_call_cfn_args (s_env *env, s_cfn *cfn, s_list *arguments,
s_tag *dest);
bool env_eval_call_fn (s_env *env, const s_call *call,
s_tag *dest);
bool env_eval_call_fn_args (s_env *env, const s_fn *fn,
s_list *arguments,
s_tag *dest);
bool env_eval_call_resolve (s_env *env, s_call *call);
bool env_eval_callable (s_env *env, s_callable *callable,
s_tag *dest);
bool env_eval_complex (s_env *env, s_complex *c,
s_tag *dest);
bool env_eval_cow (s_env *env, s_cow *cow, s_tag *dest);
bool env_eval_equal_block (s_env *env, bool macro,
s_block *a, s_block *b,
s_block *dest);
bool env_eval_equal_list (s_env *env, bool macro,
s_list *a, s_list *b,
s_list **dest);
bool env_eval_equal_struct (s_env *env, bool macro,
s_struct *a,
s_struct *b,
p_struct *dest);
bool env_eval_equal_tag (s_env *env, bool macro,
s_tag *a, s_tag *b,
s_tag *dest);
bool env_eval_equal_time (s_env *env, bool macro,
s_time *a, s_time *b,
s_time *dest);
bool env_eval_equal_tuple (s_env *env, bool macro,
s_tuple *a, s_tuple *b,
s_tuple *dest);
bool env_eval_ident (s_env *env, const s_ident *ident,
s_tag *dest);
bool env_eval_ident_is_bound (s_env *env,
const s_ident *ident);
bool env_eval_integer (s_env *env, const s_integer *integer,
s_integer *dest);
bool env_eval_list (s_env *env, s_list *list, s_tag *dest);
bool env_eval_map (s_env *env, s_map *map,
s_tag *dest);
bool env_eval_progn (s_env *env, s_list *program,
s_tag *dest);
bool env_eval_quote (s_env *env, s_quote *quote,
s_tag *dest);
bool env_eval_quote_array (s_env *env, s_array *array,
s_tag *dest);
bool env_eval_quote_block (s_env *env, s_block *block,
s_tag *dest);
bool env_eval_quote_call (s_env *env, s_call *call, s_tag *dest);
bool env_eval_quote_complex (s_env *env, s_complex *c,
s_tag *dest);
bool env_eval_quote_cow (s_env *env, s_cow *cow,
s_tag *dest);
bool env_eval_quote_list (s_env *env, s_list *list,
s_tag *dest);
bool env_eval_quote_map (s_env *env, s_map *map,
s_tag *dest);
bool env_eval_quote_quote (s_env *env, s_quote *quote,
s_tag *dest);
bool env_eval_quote_struct (s_env *env, s_struct *s,
s_tag *dest);
bool env_eval_quote_tag (s_env *env, s_tag *tag,
s_tag *dest);
bool env_eval_quote_time (s_env *env, s_time *time,
s_tag *dest);
bool env_eval_quote_tuple (s_env *env, s_tuple *tuple,
s_tag *dest);
bool env_eval_quote_unquote (s_env *env,
s_unquote *unquote,
s_tag *dest);
bool env_eval_struct (s_env *env, s_struct *s, p_struct *dest);
bool env_eval_struct_tag (s_env *env, s_struct *s, s_tag *dest);
bool env_eval_tag (s_env *env, s_tag *tag, s_tag *dest);
bool env_eval_time (s_env *env, const s_time *time,
s_tag *dest);
bool env_eval_tuple (s_env *env, const s_tuple *tuple,
s_tag *dest);
bool env_eval_var (s_env *env, const s_var *var, s_tag *dest);
#endif /* LIBKC3_ENV_EVAL_H */