From 9771a247f540ad0f16822bbffbb1724e218915ba Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Mon, 4 Nov 2024 02:56:22 +0100 Subject: [PATCH] Reference std.digest.fromHexString in doc of std.conv.hexString --- std/conv.d | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/std/conv.d b/std/conv.d index 9c9d8db236a..b0ca90757d6 100644 --- a/std/conv.d +++ b/std/conv.d @@ -5611,6 +5611,14 @@ Params: Returns: a `string`, a `wstring` or a `dstring`, according to the type of hexData. + +See_Also: + Use $(REF fromHexString, std, digest) for run time conversions. + Note, these functions are not drop-in replacements and have different + input requirements. + This template inherits its data syntax from builtin + $(LINK2 $(ROOT_DIR)spec/lex.html#hex_string, hex strings). + See $(REF fromHexString, std, digest) for its own respective requirements. */ template hexString(string hexData) if (hexData.isHexLiteral)