FLUTTER ECOSYSTEM

stevenroose/dart-hex

dart:convert API を使用した簡単な16進数変換。

dart-hex のプロジェクト画像
Stars
19
Forks
7
最終プッシュ(UTC)
2021/03/09
プロジェクト状態
公開中
Steven Roose GitHub avatar
GITHUB User

Steven Roose ↗

"We publish our code so that our fellow Cypherpunks may practice and play with it. Our code is free for all to use, worldwide." - A Cypherpunk's Manifesto

second.techPortugal
言語Dart

このリポジトリが公開するパッケージ

使用している依存関係

依存関係一覧 1 件
  • test開発用^1.16.0

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

dart-hex

Easy hexadecimal encoding and decoding using the dart:convert API.

Usage

A simple usage example:

import "package:hex/hex.dart";

void main() {
  HEX.encode(const [1, 2, 3]); // "010203"
  HEX.decode("010203"); // [1, 2, 3]
}