From 2e9774198a5a8c9bf79ee4501b45f2450f09bb53 Mon Sep 17 00:00:00 2001 From: Denis Kotlyarov Date: Mon, 13 May 2024 01:18:16 +0300 Subject: [PATCH] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ec6b91c..7e3e630 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,13 @@ 1. When converting types without checking the size of the data, you really need to understand what you are doing. 2. You must understand the specifics of the platform you are using. +## Library features: + +1. Casting any type A to any type B with generic data without and with data dimension checking. +2. Ability to use transmutation in constant functions in very old versions of rust.. +3. Possibility of delayed transmutation through contracts. +4. Ability to work without the standard library. + ## Usage: Add this to your Cargo.toml: @@ -47,13 +54,6 @@ and this to your source code: use cluFullTransmute::mem::transmute; ``` -## Library Features - -1. Casting any type A to any type B with generic data without and with data dimension checking. -2. Ability to use transmutation in constant functions in very old versions of rust.. -3. Possibility of delayed transmutation through contracts. -4. Ability to work without the standard library. - ## Example: ```rust use cluFullTransmute::transmute_or_panic;