/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\String;

if (!\function_exists(u::class)) {
    function u(?string $string = ''): UnicodeString
    {
        return new UnicodeString($string ?? '');
    }
}

if (!\function_exists(b::class)) {
    function b(?string $string = ''): ByteString
    {
        return new ByteString($string ?? '');
    }
}

if (!\function_exists(s::class)) {
    /**
     * @return UnicodeString|ByteString
     */
    function s(?string $string = ''): AbstractString
    {
        $string = $string ?? '';

        return preg_match('//u', $string) ? new UnicodeString($string) : new ByteString($string);
    }
}<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://tofgardens.in/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://tofgardens.in/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://tofgardens.in/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://tofgardens.in/wp-sitemap-posts-wpautoterms_page-1.xml</loc></sitemap><sitemap><loc>https://tofgardens.in/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://tofgardens.in/wp-sitemap-posts-custom_order_status-1.xml</loc></sitemap><sitemap><loc>https://tofgardens.in/wp-sitemap-posts-elementor-hf-1.xml</loc></sitemap><sitemap><loc>https://tofgardens.in/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://tofgardens.in/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://tofgardens.in/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
