diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 07:27:37 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 07:27:37 +0100 |
commit | 67de43b1d78e1b2a8c7e1f7c3adea05fd148d9e7 (patch) | |
tree | 55eca9a1dac88f811e96c0164b233fe85735f277 /src/libexpr/primops.cc | |
parent | 859da103ae071538c397ddcabf49d2c19d12becc (diff) |
Merge pull request #9645 from tweag/undeprecate-isNull
Undeprecate isNull
(cherry picked from commit 8e64cd59b0fe1a4e1d3ba8d359ea0f9af2936f94)
Change-Id: If36b85a3fc01ee700bcaf4d5d83a5884a4b5de92
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r-- | src/libexpr/primops.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 005a38319..6c8a1f5a8 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -450,9 +450,7 @@ static RegisterPrimOp primop_isNull({ .doc = R"( Return `true` if *e* evaluates to `null`, and `false` otherwise. - > **Warning** - > - > This function is *deprecated*; just write `e == null` instead. + This is equivalent to `e == null`. )", .fun = prim_isNull, }); |