/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/react/utils/Uuid.h
20 строк
444 B
Moti Zilberman
Add generateRandomUuidString C++ helper (#54089)
09 окт 2025, 01:26
09 окт 2025, 01:26
d932f28
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <string> namespace facebook::react { /** * Generates a random UUID version 4 string in the format * xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx (lowercase). */ std::string generateRandomUuidString(); } // namespace facebook::react