Skip to content

Commit b387f0d

Browse files
committed
initial commit
0 parents  commit b387f0d

File tree

29 files changed

+35117
-0
lines changed

29 files changed

+35117
-0
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Gatsbyjs
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<!-- AUTO-GENERATED-CONTENT:START (STARTER) -->
2+
<p align="center">
3+
<a href="https://www.gatsbyjs.org">
4+
<img alt="Gatsby" src="https://www.gatsbyjs.org/monogram.svg" width="60" />
5+
</a>
6+
</p>
7+
<h1 align="center">
8+
Gatsby's blog starter
9+
</h1>
10+
11+
Kick off your project with this blog boilerplate. This starter ships with the main Gatsby configuration files you might need to get up and running blazing fast with the blazing fast app generator for React.
12+
13+
_Have another more specific idea? You may want to check out our vibrant collection of [official and community-created starters](https://www.gatsbyjs.org/docs/gatsby-starters/)._
14+
15+
## 🚀 Quick start
16+
17+
1. **Create a Gatsby site.**
18+
19+
Use the Gatsby CLI to create a new site, specifying the blog starter.
20+
21+
```sh
22+
# create a new Gatsby site using the blog starter
23+
npx gatsby new my-blog-starter https://github.com/gatsbyjs/gatsby-starter-blog
24+
```
25+
26+
1. **Start developing.**
27+
28+
Navigate into your new site’s directory and start it up.
29+
30+
```sh
31+
cd my-blog-starter/
32+
gatsby develop
33+
```
34+
35+
1. **Open the source code and start editing!**
36+
37+
Your site is now running at `http://localhost:8000`!
38+
39+
_Note: You'll also see a second link: _`http://localhost:8000/___graphql`_. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the [Gatsby tutorial](https://www.gatsbyjs.org/tutorial/part-five/#introducing-graphiql)._
40+
41+
Open the `my-blog-starter` directory in your code editor of choice and edit `src/pages/index.js`. Save your changes and the browser will update in real time!
42+
43+
## 🧐 What's inside?
44+
45+
A quick look at the top-level files and directories you'll see in a Gatsby project.
46+
47+
.
48+
├── node_modules
49+
├── src
50+
├── .gitignore
51+
├── gatsby-browser.js
52+
├── gatsby-config.js
53+
├── gatsby-node.js
54+
├── gatsby-ssr.js
55+
├── LICENSE
56+
├── package-lock.json
57+
├── package.json
58+
└── README.md
59+
60+
1. **`/node_modules`**: This directory contains all of the modules of code that your project depends on (npm packages) are automatically installed.
61+
62+
2. **`/src`**: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. `src` is a convention for “source code”.
63+
64+
3. **`.gitignore`**: This file tells git which files it should not track / not maintain a version history for.
65+
66+
4. **`.prettierrc`**: This is a configuration file for [Prettier](https://prettier.io/). Prettier is a tool to help keep the formatting of your code consistent.
67+
68+
5. **`gatsby-browser.js`**: This file is where Gatsby expects to find any usage of the [Gatsby browser APIs](https://www.gatsbyjs.org/docs/browser-apis/) (if any). These allow customization/extension of default Gatsby settings affecting the browser.
69+
70+
6. **`gatsby-config.js`**: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins you’d like to include, etc. (Check out the [config docs](https://www.gatsbyjs.org/docs/gatsby-config/) for more detail).
71+
72+
7. **`gatsby-node.js`**: This file is where Gatsby expects to find any usage of the [Gatsby Node APIs](https://www.gatsbyjs.org/docs/node-apis/) (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process.
73+
74+
8. **`gatsby-ssr.js`**: This file is where Gatsby expects to find any usage of the [Gatsby server-side rendering APIs](https://www.gatsbyjs.org/docs/ssr-apis/) (if any). These allow customization of default Gatsby settings affecting server-side rendering.
75+
76+
9. **`LICENSE`**: Gatsby is licensed under the MIT license.
77+
78+
10. **`package-lock.json`** (See `package.json` below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. **(You won’t change this file directly).**
79+
80+
11. **`package.json`**: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc). This manifest is how npm knows which packages to install for your project.
81+
82+
12. **`README.md`**: A text file containing useful reference information about your project.
83+
84+
## 🎓 Learning Gatsby
85+
86+
Looking for more guidance? Full documentation for Gatsby lives [on the website](https://www.gatsbyjs.org/). Here are some places to start:
87+
88+
- **For most developers, we recommend starting with our [in-depth tutorial for creating a site with Gatsby](https://www.gatsbyjs.org/tutorial/).** It starts with zero assumptions about your level of ability and walks through every step of the process.
89+
90+
- **To dive straight into code samples, head [to our documentation](https://www.gatsbyjs.org/docs/).** In particular, check out the _Guides_, _API Reference_, and _Advanced Tutorials_ sections in the sidebar.
91+
92+
## 💫 Deploy
93+
94+
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-blog)
95+
96+
<!-- AUTO-GENERATED-CONTENT:END -->

content/assets/favcon.png

1.11 KB
Loading
Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
---
2+
title: rustのinput!マクロではじめからミュータブルな変数として読み込む
3+
date: "2018-12-09T03:30:57.284Z"
4+
tags: ["Rust"]
5+
---
6+
7+
大掛かりそうに見えて具体的な解決策は10秒で終わります.
8+
9+
`card:https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8`
10+
11+
のマクロでmutで宣言したいねというお話です.
12+
シャドーイングとかもあるけどはじめから宣言しちゃいたいよね.
13+
14+
上記事のマクロでは
15+
16+
```rust
17+
// 18行辺りを抜粋
18+
($iter:expr, $var:ident : $t:tt $($r:tt)*) => {
19+
let $var = read_value!($iter, $t); // ここでimmutableな変数として宣言されている
20+
input_inner!{$iter $($r)*}
21+
};
22+
```
23+
24+
のようにimmutableな変数に読み込まれてしまうので,
25+
26+
```
27+
input!{
28+
n: usize,
29+
mut a: [usize; n],
30+
}
31+
```
32+
33+
このようにmutキーワードがあるときはmutableにしてくれると嬉しいのでそのようにしてもらうようにします.
34+
35+
```rust
36+
macro_rules! input_inner {
37+
($iter:expr) => {};
38+
($iter:expr, ) => {};
39+
40+
($iter:expr, $var:ident : $t:tt $($r:tt)*) => {
41+
let $var = read_value!($iter, $t);
42+
input_inner!{$iter $($r)*}
43+
};
44+
45+
// mutキーワードがあるときにマッチする
46+
($iter:expr, mut $var:ident : $t:tt $($r:tt)*) => {
47+
let mut $var = read_value!($iter, $t);
48+
input_inner!{$iter $($r)*}
49+
};
50+
}
51+
```
52+
53+
これで以下のようなコードも可能になりました.
54+
55+
```rust
56+
fn main() {
57+
input!{
58+
n: usize,
59+
mut a: [usize; n],
60+
}
61+
62+
a.sort(); // Errorにならない!!!!
63+
64+
println!("{:?}", a);
65+
}
66+
```
67+
68+
不具合は多分ないと思います.
69+
70+
以下,マクロ全体です.
71+
72+
```rust
73+
macro_rules! input {
74+
(source = $s:expr, $($r:tt)*) => {
75+
let mut iter = $s.split_whitespace();
76+
input_inner!{iter, $($r)*}
77+
};
78+
($($r:tt)*) => {
79+
let mut s = {
80+
use std::io::Read;
81+
let mut s = String::new();
82+
std::io::stdin().read_to_string(&mut s).unwrap();
83+
s
84+
};
85+
let mut iter = s.split_whitespace();
86+
input_inner!{iter, $($r)*}
87+
};
88+
}
89+
90+
macro_rules! input_inner {
91+
($iter:expr) => {};
92+
($iter:expr, ) => {};
93+
94+
($iter:expr, $var:ident : $t:tt $($r:tt)*) => {
95+
let $var = read_value!($iter, $t);
96+
input_inner!{$iter $($r)*}
97+
};
98+
99+
($iter:expr, mut $var:ident : $t:tt $($r:tt)*) => {
100+
let mut $var = read_value!($iter, $t);
101+
input_inner!{$iter $($r)*}
102+
};
103+
}
104+
105+
macro_rules! read_value {
106+
($iter:expr, ( $($t:tt),* )) => {
107+
( $(read_value!($iter, $t)),* )
108+
};
109+
110+
($iter:expr, [ $t:tt ; $len:expr ]) => {
111+
(0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>()
112+
};
113+
114+
($iter:expr, chars) => {
115+
read_value!($iter, String).chars().collect::<Vec<char>>()
116+
};
117+
118+
($iter:expr, usize1) => {
119+
read_value!($iter, usize) - 1
120+
};
121+
122+
($iter:expr, $t:ty) => {
123+
$iter.next().unwrap().parse::<$t>().expect("Parse error")
124+
};
125+
}
126+
```
127+
128+
読めば読むほどこんなの自分には思いつかないですねと感じさせる非常によくできたマクロです.何を食べたらこんなマクロを書けるんでしょうか.
129+
130+

0 commit comments

Comments
 (0)